検索

ホームページ  >  に質問  >  本文

- css3和jquery的animate在一起怎么没有想要的效果呢?

    <!DOCTYPE html>
<html>
<head>


<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">
</script>




<script> 
$(document).ready(function(){
  $("button").click(function(){
    $("p").animate({
      width:'200px',
      height:'200px',
      transform:'rotate(360deg)';
      -webkit-transform:'rotate(360deg)';
    });
  });
});
</script>


</head>

<body>

<button>开始动画</button>


<p style="width:100px;
    height:100px;
    background:yellow;
    transition:width 2s, height 2s;
    -webkit-transition:width 2s, height 2s, -webkit-transform 2s;">
</p>



</body>
</html>

如果想实现这种效果(我鼠标点“开始动画”然后p就转一圈然后fadeOut)该怎么写呢?

阿神阿神2787日前583

全員に返信(3)返信します

  • 伊谢尔伦

    伊谢尔伦2017-04-17 11:06:54

    js语法错误,取消掉错误以后直接用css就可以触发css3动画

      $("button").click(function(){
        $("p").css({
          'width':'200px',
          'height':'200px',
          'transform':'rotate(360deg)',
          '-webkit-transform':'rotate(360deg)'
        });
      });
    

    当然了,还是不建议jquery动画和css3动画混用,帮你用css3写了一个效果,你看着改一下吧
    http://jsfiddle.net/Fmdrx/

    返事
    0
  • 伊谢尔伦

    伊谢尔伦2017-04-17 11:06:54

    1. JS语法错误
    2. jQuery的animate方法和css3 animation完全是两个不一样的东西,不要混用
    3. 无论是jQ的animate还是css3的animation网上例子都太多了先去找例子看

    返事
    0
  • ringa_lee

    ringa_lee2017-04-17 11:06:54

    http://www.cnblogs.com/WitNesS/p/4643019.html

    返事
    0
  • キャンセル返事