<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>

相关文章:

  • 2021-07-30
  • 2022-12-23
  • 2022-12-23
  • 2021-12-20
  • 2021-09-30
  • 2021-07-19
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-01-09
  • 2022-12-23
  • 2022-12-23
  • 2021-12-22
  • 2022-12-23
相关资源
相似解决方案