欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

CSS旋转动画(jQuery添加class)

程序员文章站 2022-07-13 11:42:54
...
<script>
    $("#p2 .p2_div_four").hover(function () {
        $(this).find("img").addClass('p2_div_four_hover');
    }, function () {
        $(this).find("img").removeClass('p2_div_four_hover');
    })
</script>
 .p2_div_four_hover {
      transition: 2s ease;//过渡
      transition-property: transform;
      transform: rotateY(360deg);//Y轴旋转
    }