jQuery实例

2018-06-24 02:04:49来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

看书看到的一个jQuery小例子,分享给大家。(jquery引入可以选择下载引入或者在jQuery官网找CDN)

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title>单机游戏</title>
</head>
<body>
    <div id="container"></div>
    <script src="js/jquery.min.js"></script>
    <script>
        var width=$(window).width(),height=$(window).height(),//首先使用jq获取窗口尺寸
                countdown=20, countup=0;//定义两个变量分别存放剩下要显示的方块数和用户已单击的方块数
        var nextElement=function(){//定义nextElement函数,每调用一次,就添加一个方块到页面中
            if(countdown==0){//剩下要点击的方块数为0时游戏结束
                gameOver();
                return;
            }//未结束时,添加创建一个50*50的方块生成随机的xy位置并且样式化
            var x=Math.random ()*(width-50),y=Math.random ()*(height-50);
            $("<div>").css({
                position:'absolute',
                left:x,top:y,
                width:50,height:50,
                backgroundColor:'red'
            }).appendTo("#container");
            countdown--;
         };
        var gameOver=function(){//定义gameOver函数
            clearInterval (timer);//首先清除间隔定时器,然后弹出一个提醒消息输赢
            if(countup>15){
                alert("You won!");
            }else{
                alert("You lost!");
            }
        };
        var timer=setInterval (nextElement,500);//指向setInterval的调用,每500毫秒创建一个新方块
        $("#container").on('mousedown','div',function(e){//$(selector).on调用,游戏捕获#container元素内部的所有<div>的所有mousedown事件
            countup++;
            $(this).fadeOut();
        });
    </script>
</body>
</html>

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:vue组件

下一篇:百度前端学院-基础学院-第20到21天之setTimeOut与setInterval