فهرست منبع

Listing 4.18: queued animate().

Frederic G. MARAND 8 سال پیش
والد
کامیت
f9a9490685
1فایلهای تغییر یافته به همراه3 افزوده شده و 5 حذف شده
  1. 3 5
      Chapter 4/04.js

+ 3 - 5
Chapter 4/04.js

@@ -40,10 +40,8 @@ $(document).ready(function () {
     var switcherWidth = $switcher.outerWidth();
     $switcher.css({
       position: 'relative'
-    }).animate({
-      borderWidth: '5px',
-      left: paraWidth - switcherWidth,
-      height: '+=20px'
-    }, 'slow');
+    }).animate({left: paraWidth - switcherWidth}, 'slow')
+      .animate({height: '+=20px'}, 'slow')
+      .animate({borderWidth: '5px'}, 'slow');
   });
 });