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

color animation特效制作

时间:2015-05-08 15:05:08      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:html5   jq   js   jquery   

    当我们用animate()函数做动画效果时,这里backgounColor单单用jquery函数库是实现不了的,需要引入 Color Animations 插件(jquery-ui.min.js),下面是一些实例代码:


技术分享

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>animate color annimation</title>
        <script src="../js/jquery.min.js" type="text/javascript" charset="utf-8"></script>
          <!--<script src="//apps.bdimg.com/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>-->
         <script src="../js/jquery-ui.min.js" type="text/javascript" charset="utf-8"></script>
        <script type="text/javascript">
            $(document).ready(function(){
                $(‘button‘).click(function(){
                    var div=$(‘div‘);
                    div.animate({top:‘300px‘,backgroundColor:‘#ADFF2F‘},2000);
                    div.animate({left:‘300px‘,backgroundColor:‘#008B8B‘},‘slow‘);
                    div.animate({top:‘40px‘,height:‘300px‘,opacity:‘0.5‘},1000);
                    div.animate({left:‘20px‘,height:‘100px‘,opacity:‘1‘,fontSize:‘40px‘},‘slow‘);
                });
            });
        </script>
    </head>
    <body>
        <button>开始动画</button>
        <div style="width: 100px; height: 100px; background-color:#ADFF2F; position: absolute; text-align: center; font-size: 20px;"><p>big</p></div>
    </body>
</html>


color animation特效制作

标签:html5   jq   js   jquery   

原文地址:http://blog.csdn.net/navysir8/article/details/45577605

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