Bläddra i källkod

Listing 4.14: animate() two properties at once.

Frederic G. MARAND 8 år sedan
förälder
incheckning
8eb618667c
1 ändrade filer med 4 tillägg och 1 borttagningar
  1. 4 1
      Chapter 4/04.js

+ 4 - 1
Chapter 4/04.js

@@ -22,7 +22,10 @@ $(document).ready(function () {
   $firstPara.hide();
   $('a.more').click(function (event) {
     event.preventDefault();
-    $firstPara.animate({height: 'toggle'}, 'slow');
+    $firstPara.animate({
+      opacity: 'toggle',
+      height: 'toggle'
+    }, 'slow');
     var $link = $(this);
     if ($link.text() == 'read more') {
       $link.text('read less');