js之运动框架缓冲运动

由于JS里对于数值小数点会自动去除,所以对于运动位置,需要使用Math.ceil()向上取整或者

Math.floor()向下取整进行解决

以下是我的缓冲运动练习简单代码

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<Meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style>
#div1{width:200px;height:200px;background:red;left:0px;top:50px;position:absolute;}
#div2{width:1px;height:250px;background:black;left:400px;top:20px;position:absolute;}
</style>
<script>
window.onload=function ()
{
	var oDiv=document.getElementById('div1');
	var oBtn=document.getElementById('btn1');
	oBtn.onclick=function ()
	{
		startMove(400);	
		
	}
};
var timer=null;
function startMove(target)
{
	var oDiv=document.getElementById('div1');
	var speed=0;
	clearInterval(timer)
	
	timer=setInterval(function ()
	{
			//speed会被直接取整,舍去余数,所以位置不精确,需要通过向上取整Math.ceil()来解决
			speed=Math.ceil((target-oDiv.offsetLeft)/10);   
			oDiv.style.left=oDiv.offsetLeft+speed+'px';	
			document.title=oDiv.offsetLeft+','+speed;
	},30);
};
</script>
</head>

<body>
<input id="btn1" type="button" value="开始运动" />
<div id="div1">
</div>
<div id="div2">
</div>
</body>
</html>

相关文章

前言 做过web项目开发的人对layer弹层组件肯定不陌生,作为l...
前言 前端表单校验是过滤无效数据、假数据、有毒数据的第一步...
前言 图片上传是web项目常见的需求,我基于之前的博客的代码...
前言 导出Excel文件这个功能,通常都是在后端实现返回前端一...
前言 众所周知,js是单线程的,从上往下,从左往右依次执行,...
前言 项目开发中,我们可能会碰到这样的需求:select标签,禁...