码迷,mamicode.com
首页 > Web开发 > 详细

自定义动画函数JQuery实现

时间:2018-06-08 22:06:37      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:rip   回调函数   UNC   回调   cti   red   head   http   gre   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
    div{
        width: 100px;
        height: 100px;
        background: green;
    }
    </style>
    <script src="js/jquery-1.12.4.min.js"></script>
    <script>
    $(function(){
        // $(‘div‘).animate(字典的形式写动画过程, 动画所需时间, 运动曲线, 回调函数)
        // 1、动画过程:{} -- css多属性写法相同
        // 2、时间以毫秒为单位,  600
        // 3、运动曲线:swing  linear
        // 4、回调函数:就是匿名函数function(){} -- 作用:当动画完成之后执行的命令
        $(‘div‘).eq(0).animate({‘width‘:‘800px‘, ‘height‘:‘300px‘,‘background‘:‘red‘}, 1000, ‘swing‘, function(){
            alert(‘动画完成了‘)
        })
        // $(‘div‘).eq(1).animate({‘width‘:‘800px‘}, 1000, ‘linear‘)

        // ****animate不支持变色动画
    })
    </script>
</head>
<body>
    <div></div>
    <!-- <div></div> -->
</body>
</html>

  

自定义动画函数JQuery实现

标签:rip   回调函数   UNC   回调   cti   red   head   http   gre   

原文地址:https://www.cnblogs.com/wf-skylark/p/9157462.html

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