• 页面点击飘字


    页面文件如下:

    <!DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <title>Document</title>
    </head>
    
    <body style="height: 800px; margin: auto 0px">
    </body>
    
    </html>
    <script>
        // (function() {
        //     var coreSocialistValues = ["富强", "民主", "文明", "和谐", "自由", "平等", "公正", "法治", "爱国", "敬业", "诚信", "友善"];
        //     var index = Math.floor(Math.random() * coreSocialistValues.length);
        //     document.body.addEventListener('click', function(e) {
        //         if (e.target.tagName == 'A') {
        //             return;
        //         }
        //         var x = e.pageX,
        //             y = e.pageY,
        //             span = document.createElement('span');
        //         span.textContent = coreSocialistValues[index];
        //         index = (index + 1) % coreSocialistValues.length;
        //         span.style.cssText = ['z-index: 9999999; position: absolute; font-weight: bold; color: #ff6651; top: ', y - 20, 'px; left: ', x, 'px;'].join('');
        //         document.body.appendChild(span);
        //         animate(span);
        //     });
    
        //     function animate(el) {
        //         var i = 0,
        //             top = parseInt(el.style.top),
        //             id = setInterval(frame, 16.7);
    
        //         function frame() {
        //             if (i > 180) {
        //                 clearInterval(id);
        //                 el.parentNode.removeChild(el);
        //             } else {
        //                 i += 2;
        //                 el.style.top = top - i + 'px';
        //                 el.style.opacity = (180 - i) / 180;
        //             }
        //         }
        //     }
        // }());
    </script>
    博客js代码部分提交受阻,所以暂时先注释。
  • 相关阅读:
    switch选择结构
    变量与数据类型
    if选择结构
    NewSQL数据库VoltDB特性简介
    关系代数的并行计算
    【伯乐在线】程序员一定要投资的那些事
    Spark on Yarn
    六星经典CSAPP笔记(1)计算机系统巡游
    程序员的“机械同感”
    Impala中的代码生成技术
  • 原文地址:https://www.cnblogs.com/Med1tator/p/9143991.html
Copyright © 2020-2023  润新知