zoukankan      html  css  js  c++  java
  • Js-点名器

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>点名器</title>
        <style>
            *{margin:0px;padding:0px;}
    
            #all{
                500px;
                height:300px;
                border:solid 1px blue;
                position:fixed;
                left:50%;
                top:50%;
                margin-left:-250px;
                margin-top:-150px;
                border-radius:10px;
                background:#CC99CC;
            }
    
            #names{
                350px;
                height:180px;
                border:solid 1px green;
                margin:30px auto;
                border-radius:10px;
                background:#FFCCCC;
                font-size:60px;
                line-height:180px;
                text-align:center;
            }
            #start{
                80px;
                height:30px;
                margin-left:100px;
                font-size:17px;
                cursor:pointer;
            }
    
            #stops{
                80px;
                height:30px;
                margin-left:140px;
                font-size:17px;
                cursor:pointer;
    
            }
        </style>
    </head>
    <body>
        <div id='all'>
            <div id='names'></div>
    
            <button id='start'>开始</button>
            <button id='stops'>停止</button>
        </div>
    
        <script>
            var starts = document.getElementById('start');
            var stops = document.getElementById('stops');
            var names = document.getElementById('names');
    
            var into;
    
            starts.onclick = function(){
    
                if(into != null) return;
                //定时器
    
                into = setInterval(function(){
                //名字
                var ns = ['张三','李四','潘金莲','武大郎','武松','西门庆','宋江','公孙胜','宋清','杨志','方腊','林冲','鲁智深','镇关西','史进','吴用','燕青','戴宗'];
    
                names.innerHTML = ns[rand(0,ns.length-1)];
    
    
                },50)
            }
    
            stops.onclick = function(){
    
                clearInterval(into);
    
                into = null;
    
    
            }
    
            //随机数
            function rand(m,n){
    
                return Math.ceil(Math.random()*(n-m+1))+(m-1);
            }
    
    
        </script>
    </body>
    </html>
  • 相关阅读:
    索引碎片整理
    SQL Server表分区案例
    SQL分页查询语句
    SQL Server表分区
    SQL Server优化
    SQLSERVER中WITH(NOLOCK)详解
    作业四
    第三次k均值
    机器学习第二次作业
    机器学习
  • 原文地址:https://www.cnblogs.com/yuxiang-qiwa/p/8195698.html
Copyright © 2011-2022 走看看