HTML+js实现猜字小游戏

HTML+js实现猜字小游戏

代码实现:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<style>
			#all{
				width: 300px;
				height:200px;	
				margin: auto;
				position: absolute;
				top: 0px;
				right: 0;
				bottom: 0;
				left: 0;
				background:url(../img/10.jpg) no-repeat;
			}
			#log{
				width: 300px;
				height:50px;	
				position: absolute;
				border: 1px #F08080;
				top:0px;
				left: 0;
				color: #F08080;
				font-size:12px;
				text-align: center;
			}
			#mag{
				width: 100px;
				height:50px;	
				position: absolute;
				top:35px;
				right:40px;
				color: #F08080;
				font-size:8px;
			}
			#aa{
				width: 100px;
				height:20px;
				position: absolute;
				top:0px;
				left: 0px;
				color: #F08080;
				font-size:8px;
			}
			#bb{
				width: 100px;
				height:20px;
				position: absolute;
				top:10px;
				left: 0px;
				color: #F08080;
				font-size:8px;
				border:1px  cadetblue;
			}
			#main{
				width: 300px;
				height:100px;	
				margin: auto;
				position: absolute;
				top:40px ;
				left: 0px;
				color: #E9967A;
				font-size: 10px ;
			}
				
			#cc{
				width: 200px;
				height:100px;	
				margin: auto;
				position: absolute;
				top:60px ;
				left: 0px;
				color: #E9967A;
				font-size: 10px ;
			}
			#aq{
				width: 60px;
				height:60px;	
				margin: auto;
				position: absolute;
				top:40px ;
				left: 110px;
				border-radius: 50%;
				border: 1px solid  #E9967A;
				color: #E9967A;
				font-size: 10px ;
				line-height: 60px;
				text-align:center;
				
			}
			#dd{
				width:300px;
				height:50px;	
				margin: auto;
				position: absolute;
				top:170px ;
				left: 0px;
				color: #E9967A;
				font-size: 8px ;
			}
		</style>
	</head>
	<body>
		<div id="all">
			<div id="log">
               欢迎登陆数字猜猜乐游戏
			</div>
			<div id="mag">
				<div id="aa">
					消息:猜数字,数字从0-100
				</div>
				<div id="bb">
				Cuesses:
				</div>
		    </div>
			<div id="main">
				<div id="cc"> Higher or Lower:</div>
				<div id="aq"> </div>
			</div>
			<div id="dd">
				Num Guessed:<input  id="dd1" type="text" name="text" />
				<input type="submit" onclick="isNum()" value="提交"/>
			</div>
		</div>
		<script>
			var count=0;
			var rnd = parseInt(Math.random()*101);
			console.log(rnd);	
			function isNum(){
				var num1=Number(document.getElementById("dd1").value);
				if(rnd==num1){
					aq.innerHTML='相等';
				}else if(rnd>num1){
					aq.innerHTML='小了';
				}else {
					aq.innerHTML='大了';
				}
				count++;
				bb.innerHTML=count;
			}
			
		</script>
		</body>
</html>

结果图

在这里插入图片描述

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值