时间:2021-05-26
效果图:
代码如下:
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <style> *{ margin: 0; padding: 0; } #wrap{ width: 800px; height: 500px; border: 1px solid deeppink; margin-left: 10px; margin-top: 5px; float: left; } #input1{ width: 80px; margin: 5px auto 5px 10px; font-size: 0; float: left; } #div1{ width: 100px; height: 100px; background: hotpink; position: absolute; top: 20px; left: 30px; border-radius: 100px; box-shadow: 0px 5px 5px rgba(0,0,0,.5); } input{ width: 100px; height: 40px; line-height: 40px; text-align: center; font-size: 18px; display: block; background: palegreen; margin-bottom: 5px; } </style> </head> <body> <div id="wrap"> <div id="div1"></div> </div> <div id="input1"> <input type="button" value="向左" id="btn2" /> <input type="button" value="向右" id="btn1"/> <input type="button" value="向上" id="btn3" /> <input type="button" value="向下" id="btn4"/> </div> <script> var oBtn=document.getElementById('btn1'); var oDiv=document.getElementById('div1'); var oBtn2=document.getElementById('btn2'); var oBtn3=document.getElementById('btn3'); var oBtn4=document.getElementById('btn4'); oBtn4.onclick=function(){ move(oDiv,10,380,'0px 5px 5px rgba(0,0,0,.5)','top'); } oBtn3.onclick=function(){ move(oDiv,-10,30,'0px -5px 5px rgba(0,0,0,.5)','top'); } oBtn2.onclick=function(){ move(oDiv,-10,40,'-5px 5px 5px rgba(0,0,0,.5)','left'); } oBtn.onclick=function(){ move(oDiv,10,680,'5px 5px 5px rgba(0,0,0,.5)','left'); } function move(obj,val,target,bs,dir){ obj.style.boxShadow=bs; clearInterval(obj.timer); obj.timer=setInterval(function(){ var speed=parseInt(getStyle(obj,dir))+val; if(speed>=target&&val>0){ speed=target; } if(speed<=target&&val<0){ speed=target } obj.style[dir]=speed+'px'; if(speed==target){ clearInterval(obj.timer); } },30); } function getStyle(obj,sty){ return obj.currentStyle?obj.currentStyle[sty]:getComputedStyle(obj)[sty]; } </script> </body></html>以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了JS实现利用闭包判断Dom元素和滚动条的方向。分享给大家供大家参考,具体如下:一、判断滚动条的方向,利用闭包首先保存滚动条的位置,然后当滚动时候不
本文实例为大家分享了C语言实现乒乓球比赛的具体代码,供大家参考,具体内容如下1)、基本要求用8个LED发光管(红黄绿)的来回滚动显示来模拟打乒乓球时乒乓球在两边
本文实例讲述了js实现带按钮的上下滚动效果。分享给大家供大家参考。具体实现方法如下:js带按钮上下滚动效果ul{margin:0;padding:0;list-
本文实例讲述了js控制多图左右滚动切换效果。分享给大家供大家参考。具体如下:这是一款纯js实现点击左右按钮图片自动左右平滑滚动,默认5个一组左右滚动,可以手动修
水平方向无缝滚动滚动支持图片,文字原理:一个大的盒子中放置两个盒子,通过设置offsetWidth,scrollLeft的关系来实现,而且还用到定时器函数set