首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

jquery实现图片的下上缓慢跳动

2012-09-11 
jquery实现图片的上下缓慢跳动直接上代码:$(function(){$(.pic).mouseover(function(){if(!($(this).is(

jquery实现图片的上下缓慢跳动

直接上代码:

$(function(){$(".pic").mouseover(function(){if(!($(this).is(":animated"))){$(this).animate({"top":"-15px",},200).animate({"top":"-0px",},200).animate({"top":"-12px",},200).animate({"top":"-0px",},200).animate({"top":"-6px",},200).animate({"top":"-1px",},200).animate({"top":"-1px",},200).animate({"top":"-0px",},200);}});});

?if(!($(this).is(":animated"))) //不让其反复弹动

热点排行