JS实现的缓冲运动效果示例
程序员文章站
2023-01-28 19:54:29
本文实例讲述了js实现的缓冲运动效果。分享给大家供大家参考,具体如下:
缓冲需要用到数值取整,向上取整:math.ceil() 向下取整math.floor(...
本文实例讲述了js实现的缓冲运动效果。分享给大家供大家参考,具体如下:
缓冲需要用到数值取整,向上取整:math.ceil()
向下取整math.floor()
移动的速度慢慢减慢的效果,移动速度=(终点位置 - 当前位置) / 一个数
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>www.jb51.net js缓冲运动</title> <style> #div{ width:150px; height:150px; background:#0c6; position:absolute; left:0; top:50px; } #div2{ background:#000; height:600px; position:absolute; left:500px; width:2px; } </style> </head> <script> var speed; var time; window.onload = function(){ var btn = document.getelementbyid('btn'); btn.onclick = function(){ speed = 0; move(500); }; btn2.onclick = function(){ speed = 0; move(0); }; }; function move(e){ var div = document.getelementbyid('div'); clearinterval(time); time = setinterval(function(){ //改变位置,如果向左则e==500, 向上取整, 否则向右,向下取整,速度=(终点位置 - 当前位置)/一个数 e==500 ? speed = math.ceil((e-(div.offsetleft))/30):speed = math.floor((e-(div.offsetleft))/30) if (e <= div.style.left){//达到,关闭定时器 clearinterval(time); } else { div.style.left = div.offsetleft+speed+'px'; } },30); }; </script> <body> <input type="button" value="向右运动" id="btn" /> <input type="button" value="向左运动" id="btn2" /> <div id = "div"> </div> <div id = "div2"> </div> </body> </html>
点击此处查看。
或者使用本站在线html/js运行工具测试查看运行效果:http://tools.jb51.net/code/htmljsrun
更多关于javascript相关内容感兴趣的读者可查看本站专题:《javascript运动效果与技巧汇总》、《javascript切换特效与技巧总结》、《javascript查找算法技巧总结》、《javascript动画特效与技巧汇总》、《javascript错误与调试技巧总结》、《javascript数据结构与算法技巧总结》、《javascript遍历算法与技巧总结》及《javascript数学运算用法总结》
希望本文所述对大家javascript程序设计有所帮助。