码迷,mamicode.com
首页 > 其他好文 > 详细

jquey实例之animate

时间:2014-05-05 12:19:01      阅读:300      评论:0      收藏:0      [点我收藏+]

标签:jquey实例之animate

<!doctype html>
<html>
    <head>
        <meta charset="utf-8"/>
        <script type="text/javascript" src="jquery.js"></script>
    </head>
      
    <body>
        <img src="8fbf0884jw1drfmvfrhrhj.jpg" width="300" height="300"/>
        <button id="btn1">放大</button>
        <button id="btn2">缩小</button>
    </body>
</html>
        <script>
            $(function(){
                $(‘#btn1‘).click(function(){
                alert("11");
                    $(‘img‘).animate({width:1000,height:1000},500);
                });
                $(‘#btn2‘).click(function(){
                    $(‘img‘).animate({width:300,height:300},500);
                });
              
            });
        </script>


本文出自 “王尼美的成人之路” 博客,请务必保留此出处http://8335914.blog.51cto.com/8325914/1405769

jquey实例之animate,布布扣,bubuko.com

jquey实例之animate

标签:jquey实例之animate

原文地址:http://8335914.blog.51cto.com/8325914/1405769

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!