jq hover方法用法 例子
Posted 舞纷菲
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jq hover方法用法 例子相关的知识,希望对你有一定的参考价值。
<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>
以上是关于jq hover方法用法 例子的主要内容,如果未能解决你的问题,请参考以下文章