为了账号安全,请及时绑定邮箱和手机立即绑定

大神帮我看看是哪里的问题?怎么实现不了达到最大值停止放大的效果

<!doctype html>
<html>
	<head>
		<title>获取样式</title>
		<meta  charset="UTF-8">
		<!--<link rel="stylesheet" type="text/css" href="CSS/style.css">
		<script type="text/javascript" src="Js/script.js"></script>-->
	</head>
	<body>
		<div style="width:300px;margin: auto;">
			<img src="images/heaven.png" id="myImages">
		</div>
		<script type="text/javascript">
		window.onload=function(){
			var oImg=document.getElementById('myImages');
			oImg.onclick=function(){
				alert("你好!");
				maxFun();
			}
		}
		var oImg=document.getElementById('myImages');
		//定义放大函数
		var maxwidth=oImg.width*2;
		var maxheight=oImg.height*2;
		function maxFun(){
			var endwidth=oImg.width*1.3;
			var endheight=oImg.height*1.3;
			var maxTimer=setInterval(function(){
				if (oImg.width<endwidth) {
					if (oImg.width<maxwidth) {
						oImg.width=oImg.width*1.05;
				    oImg.height=oImg.height*1.05;
					} else{
						clearInterval(maxTimer);
					}
			    }else{
			    	clearInterval(maxTimer);
			    }
			},20);
		}
		</script>
	</body>
</html>


正在回答

1 回答

将window.onload方法的括号放最后面,即包裹住所有就可以了

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
用JavaScript实现图片缓慢缩放效果
  • 参与学习       32792    人
  • 解答问题       91    个

本课程讲解如何使用JavaScript技术实现图片缩放效果,并分析原理

进入课程

大神帮我看看是哪里的问题?怎么实现不了达到最大值停止放大的效果

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信