1 Star 0 Fork 1

武林盟主vs/jsdemo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
sport2.html 895 Bytes
一键复制 编辑 原始数据 按行查看 历史
武林盟主vs 提交于 2018-07-01 23:32 . 运动框架 滚动
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>运动框架2 简单的运动2</title>
<style>
*{margin: 0; padding: 0;}
.box{
width:100px;
height: 100px;
position: absolute;
top:80px;
left:40px;
background-color: pink;
}
</style>
</head>
<body>
<div class="box" id="box"></div>
<script>
window.onload = function(){
var oBox = document.getElementById("box");
var num = 40;
var timer;
/* 实现效果:
* 自动运动到705宽度就停止
*/
timer = setInterval(function(){
num += 8;
//应该是临界值的 >= ,不能写 ==
if( num >= 705){
num = 705;
clearInterval(timer);
}
oBox.style.left = num + 'px';
},30)
}
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yaozhixing1688/jsdemo.git
git@gitee.com:yaozhixing1688/jsdemo.git
yaozhixing1688
jsdemo
jsdemo
master

搜索帮助