User:KazutoIKEDA/wiki/change-image.js

From 2009.igem.org

(Difference between revisions)
Line 10: Line 10:
     );
     );
   });
   });
-
   $(".funwari").fadeTo(1,0.7)
+
   $(".funwari")
   .hover(  
   .hover(  
     function(){// マウスオーバー時
     function(){// マウスオーバー時
-
       $(this).fadeTo(200, 1.0);
+
       $(this).fadeTo(slow, 0.7);
     },
     },
     function(){// マウスアウト時
     function(){// マウスアウト時
-
       $(this).fadeTo(500, 0.8);
+
       $(this).fadeTo(slow, 1.0);
     }
     }
   );
   );
});
});

Revision as of 18:21, 19 October 2009

$(document).ready( function() {
  $(".thumbnail img").click( function() {
    var changeSrc = this.src;
    $(".target img").fadeOut(
      "slow",
      function() {
        $(this).attr("src", changeSrc);
        $(this).fadeIn();
      }
    );
  });
  $(".funwari")
  .hover( 
    function(){// マウスオーバー時
      $(this).fadeTo(slow, 0.7);
    },
    function(){// マウスアウト時
      $(this).fadeTo(slow, 1.0);
    }
  );
});