猜数字游戏

猜数字游戏

界面:

初始状态

[外链图片转存失败(img-Ahi4BtJE-1567587823225)(C:\Users\13467\AppData\Roaming\Typora\typora-user-images\1567587460526.png)]

运行时

在这里插入图片描述

css:

<style>
    #body{
        width: 500px;
        height: 400px;
        background: url(img/timg.jpg) no-repeat;
        background-size: cover;
        margin: auto;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;

        border: 5px dotted chocolate;
        box-shadow: 10px 10px 10px #FFDAB9;
        border-radius: 10px;
    }
    #title{
        height:50px;
        font: arial;
    }
    #rule{
        height:20px;
        color: red;
        font-size: 15px;
        font: arial;
        margin-left: 10px;
    }
    #hint{
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background-color: peachpuff;
        margin: auto;
        position: relative;
        font: 50px;
        line-height: 200px;
        box-shadow: 5px 5px 5px coral;

    }


    #count{
        margin: 10px ;

        font-size: 20px;
        font: arial;
    }

    #inputNum{
        width: 500px;
        height: 200px;
        margin: 10px;
    }
    #num{
        width: 350px;
        height: 40px;
    }

    .button{
        width: 50px;
        height: 45px;
    }
    .close {
        width: 38px;
        height: 37px;
        position: absolute;
        top: 0;
        right: 0;
        background: url(img/关闭.png);
        background-position: 0px -1px;
    }

    .close:hover {
        width: 38px;
        height: 37px;
        position: absolute;
        top: 0;
        right: 0;
        background-position: -43px -1px;
        cursor:pointer;
    }
</style>

html:

<div class="close" onclick="close0();">
    <a href="#"></a>
</div>
<div id="title" align="center"><h1>欢迎来到数字猜猜乐</h1></div>
<div id="rule">规则:随机生成 1~100,看看几次能猜对啊!</div>
<div id="hint" align="center" style="font-size: 30px;"></div>
<div id="count">
    <span class="countt">已猜次数:</span>
    <span class ="countv"></span>
</div>
<div id="inputNum">
    <input type="text" placeholder="请输入数字" id="num" onfocus="this.select();"  onmouseup="this.select();" />
    <button type="button" class="button" onclick="game()">提交</button>
</div>

js:

<script>
    var num1 = parseInt(Math.random()*101);
    var count = 0;
    console.log(num1);
    document.getElementsByClassName("countv")[0].innerText = count;
    function game(){
        count++;
        document.getElementsByClassName("countv")[0].innerText = count;
        var num = 	(document.getElementById("num").value);
        if(num==num1){
            var b = confirm("恭喜你答对了,要不要再来一次啊 @v@ ");
            if(b){
                count = 0;
                document.getElementsByClassName("countv")[0].innerText = count;
                document.getElementById("hint").innerHTML = "";
                num1 = parseInt(Math.random()*101);
                console.log(num1);
            }else{
                window.location.href="http://127.0.0.1:8020/Demo05/gameMain.html"; 
            }

        }else if(num<num1){
            document.getElementById("hint").innerHTML = "猜小啦!~_~";
        }else if(num>num1){
            document.getElementById("hint").innerHTML = "猜大啦!n_n";
        }

    }

    function close0() {
        document.getElementById("body").style.display = 'none';
    };	
</script>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值