当前位置:   article > 正文

JavaScript-缓动动画

JavaScript-缓动动画

在这里插入图片描述

<!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" xml:lang="en">
<head>
	<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
	<!-- 计时器每调动一次,移动的步长逐渐减小 -->
	<title>缓动动画</title>
	<style type="text/css">
		*{
			margin: 0;
			padding: 0;
		}
		p{
			width: 100px;
			height: 100px;
			background-color: yellow;
			position: absolute;
			top: 100px;
			left: 0px;
		}
	</style>
	<script type="text/javascript">
		function $(id){
			return document.getElementById(id);
		}
		window.onload=function(){
			var leader=0;//每次移动的位置;
			var target=0;//移动的最后目标位置;
			var timer;//定时器的引用;
			$("btn").onclick=function(){
				target=500;
				if(timer){
					clearInterval(timer);
				}		
				timer = setInterval(function(){
					leader=leader+(target-leader)/10;
					$("ht").style.left=leader+"px";//改变的是行内样式,而不是内联样式;
				},100);
			}
		}	
	</script>
</head>
<body>
	<input type="button" value="点击" id="btn" />
	<p id="ht"></p>
</body>
</html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/650550
推荐阅读
相关标签
  

闽ICP备14008679号