您的位置:首页 > 其它

jq hover方法用法 例子

2016-03-10 11:55 253 查看
<script type="text/javascript">
$(function(){
$('.caseslist').hover(function(){
if(!$(this).is(":animated")){
$(this).children('.casedetail').animate({'bottom':'0px'}, 300);
}
},function(){
$(this).children('.casedetail').animate({'bottom':'-50px'}, 300);
});
});
</script>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: