JavaScript运动框架 链式运动到完美运动(五)
程序员文章站
2023-11-18 15:08:28
基于前几篇的运动框架基础,本文主要讲解一下链式运动,就是运动完后接着再运动,比如很多网站中,一个方框的出现和退出:出现时先变宽再变高,退出时先变矮再变窄退出!
之前的模...
基于前几篇的运动框架基础,本文主要讲解一下链式运动,就是运动完后接着再运动,比如很多网站中,一个方框的出现和退出:出现时先变宽再变高,退出时先变矮再变窄退出!
之前的模型是:
startmove(obj, json);
现在改为:
startmove(obj, json, fn);
也就是在第一次运动结束的时候执行fn(); fn是传过来的一个参数,这个参数是个函数,定时器清理之后手动运行fn();如果想采用链式运动,那就是在fn中再调用startmove(obj, json, fn),再在里面的fn中调用startmove(obj, json, fn),可以一直玩下去
<!doctype html> <html> <head> <meta charset="utf-8"> <title>运动框架(五):链式运动到完美运动</title> <style type="text/css"> div { width: 100px; height: 100px; background: orange; margin: 10px; float: left; } </style> </head> <body> <div id="div1"></div> <script type="text/javascript"> var odiv = document.getelementbyid('div1'); odiv.onmouseover = function() { startmove(odiv, {width:300,opacity:30}, function() { startmove(odiv, {height:500}); }); }; odiv.onmouseout = function() { startmove(odiv, {height:100}, function() { startmove(odiv, {width:100,opacity:100}); }) }; function getstyle(obj, attr) { if (obj.currentstyle) { return obj.currentstyle[attr]; } else { return getcomputedstyle(obj, null)[attr]; } } function startmove(obj, json, fn) { clearinterval(obj.timer); obj.timer = setinterval(function() { var bstop = true; for (var attr in json) { var cur = 0; if (attr === 'opacity') { cur = math.round(parsefloat(getstyle(obj, attr)) * 100); } else { cur = parseint(getstyle(obj, attr)); } if (cur != json[attr]) { bstop = false; } var speed = (json[attr] - cur)/10; speed = speed > 0 ? math.ceil(speed) : math.floor(speed); cur += speed; if (attr === 'opacity') { obj.style.filter = 'alpha(opacity:' + cur + ')'; obj.style.opacity = cur/100; } else { obj.style[attr] = cur + 'px'; } } if (bstop) { clearinterval(obj.timer); if (fn) fn(); } }, 30); } </script> </body> </html>
最后提取出来的完美运动框架如下,motionframe.js:
function getstyle(obj, attr) { if (obj.currentstyle) { return obj.currentstyle[attr]; } else { return getcomputedstyle(obj, null)[attr]; } } function startmove(obj, json, fn) { clearinterval(obj.timer); obj.timer = setinterval(function() { var bstop = true; for (var attr in json) { var cur = 0; if (attr === 'opacity') { cur = math.round(parsefloat(getstyle(obj, attr)) * 100); } else { cur = parseint(getstyle(obj, attr)); } if (cur != json[attr]) { bstop = false; } var speed = (json[attr] - cur)/10; speed = speed > 0 ? math.ceil(speed) : math.floor(speed); cur += speed; if (attr === 'opacity') { obj.style.filter = 'alpha(opacity:' + cur + ')'; obj.style.opacity = cur/100; } else { obj.style[attr] = cur + 'px'; } } if (bstop) { clearinterval(obj.timer); if (fn) fn(); } }, 30); }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。