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

基于RAF的一个小动画框

时间:2016-05-21 01:18:05      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:

RAF也即是requestAnimationFrame,之前的动画都是基于setTimeout写的,所以为了性能方面的考虑,开始使用requestAnimationFrame写动画。

function animation(obj, data) {
    if (obj.timer) {
        window.cancelAnimationFrame(obj.timer)
    }
    obj.timer = window.requestAnimationFrame(function () {
        for (var i in data) {
            var current=parseInt(obj.style[i]);
            var target=parseInt(data[i]);
            var speed=(target-current)/8;
            speed=speed>0?Math.ceil(speed):Math.floor(speed);

            if(current!=target){
                obj.style[i]=current+speed+"px";
                obj.timer=window.requestAnimationFrame(arguments.callee);
            }
        }
    })
}

 

基于RAF的一个小动画框

标签:

原文地址:http://www.cnblogs.com/jelly7723/p/5513782.html

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