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

animate实现动画效果

时间:2015-07-28 10:37:06      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!--<script src="../../JQuery/jquery-2.1.4.min.js"></script>-->
    <script src="../../JQuery/jquery-1.4.2.min.js"></script>
    <link href="../../CSS/2-7.css" rel="stylesheet" />
    <title>使用animate实现动画效果</title>
    <script type="text/javascript">

        $(function () {
            $("#btn").click(function () {
                $("#box").animate({ height: "500px" }); //此方法操作div,可以使div样式不会还原,操作span则会在动画效果完成后还原之前样式。
            }
            )
            $(".btn1").click(function () {
                $("#box").animate({ height: "300px" }); //此方法操作div,可以使div样式不会还原,操作span则会在动画效果完成后还原之前样式。
            }
       )
        })
    </script>
</head>
<body>
    <div>  
        <span id="spnMove">Span Move</span>
    </div>
    <div id="box" style="background: #98bf21; height: 100px; width: 100px; margin: 6px;"></div>
    <button class="btn1">Animate</button>
    <input type="button" id="btn" value="animate" />
</body>
</html>

 

animate实现动画效果

标签:

原文地址:http://www.cnblogs.com/zhaomengmeng/p/4681970.html

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