這隻史萊姆太性感了阿!!
$(document).ready(function(){
var Img1 = “//cdn.clickme.net/Gallery/2012/10/08/5714994d292431610c7f98a150cdc206.jpg”;
var Img2 = “http://i.imgur.com/nwved.jpg”;
var tempIndex = 1;
$(“#tempImg”).click(function(){
switch(tempIndex){
case 1:
$(“#tempImg”).animate({opacity: 0.2},150,function(){
$(“#tempImg”).attr(“src”,Img2);
tempIndex = 2;
}).animate({opacity: 1},150);
break;
case 2:
$(“#tempImg”).animate({opacity: 0.2},150,function(){
$(“#tempImg”).attr(“src”,Img1);
tempIndex = 1;
}).animate({opacity: 1},150);
break;
default:
break;
}
});
});