龟兔赛跑网页初级版本

guitu.html:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
		<link rel="stylesheet" href="../css/mystyle.css" />
		<script type="application/javascript" src="../js/my.js"></script>
	</head>
	<body>
		<div id="map">
			
			<input type="button" value="start" onclick="start()"/>
			<img id="w"/>
			<img id="r"/>
		</div>
		
		<!--<img id="w" src="../img/w1.png" />
		<img id="r" src="../img/r1.png" />-->
		
		
		
	</body>
</html>

mystyle.css

#map{
	
	width: 900px;
	height: 600px;
	position: absolute;
	left: 200px;
	top: 100px;
	border: solid 1px #90EE90;
	text-align: center;
}


#w{
	display: none;
	position: absolute;
	overflow:hidden;
	
	width: 91px;
	
}
#r{
	display: none;
	position: absolute;
	overflow:hidden;
	width: 80px;
}

#wf{
	width: 91px;
}
#rf{
	width: 80px;
}

my.cs

currentCountR = 1
currentCountW = 1
border = 900
widthW = 91
widthR = 80
id = null
console.log(widthW)
console.log(widthR)
function start(){
	
	g = document.getElementById('w')
	r = document.getElementById('r')
	g.style.left = '200px';
	g.style.top = '200px';
	r.style.left = '200px';
	r.style.top = '450px';
	g.style.display = 'block'
	r.style.display = 'block'
	id = setInterval(move, 100)
}

function move(){
	
	g = document.getElementById('w')
	r = document.getElementById('r')
	g.src = "../img/w"+parseInt(currentCountW) +".png"
	currentCountW++
	if(parseInt(currentCountW) == 7)
		currentCountW=1
	r.src = "../img/r"+parseInt(currentCountR) +".png"
	currentCountR++
	if(parseInt(currentCountR) == 7)
		currentCountR=1
	rleft = r.style.left
	gleft = g.style.left
	
	rleft = Number.parseInt(rleft.split('px')[0])
	gleft = Number.parseInt(gleft.split('px')[0])
	rleft +=10
	gleft +=5
	g.style.left = gleft+'px'
	r.style.left = rleft+'px'
	
	if((rleft+widthR)>border){
		alert('r win')
		document.getElementById('map').style.display = 'none'
		clearInterval(id)
		}
		
	else if((gleft+widthW)>border){
		alert('w win')
		document.getElementById('map').style.display = 'none'
		clearInterval(id)
		}
		
	
}


window.onbeforeunload = function (){
	
	if(window.confirm('querentuichuma')){
		window.quit()
		
	}
}

运行截图:
在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值