分享一个用原生JS实现的缓冲运动的小Demo,效果如下:
以下是代码实现,欢迎大家复制粘贴及吐槽。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>原生JS实现各种运动之缓冲运动</title>
<style>
#box {
width: 100px;
height: 100px;
position: absolute;
background: red;
left: 0;
top: 50px;
}
</style>
</head>
<body>
<input type="button" value="开始运动" onclick="startMove(300)" />
<div id="box"></div>
<script