zoukankan      html  css  js  c++  java
  • 彩色签名

    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="UTF-8">
            <title></title>
        </head>
        <style type="text/css">
            .active{
                 10px;
                height: 10px;
                position: absolute;
                border-radius: 50%;
            }
        </style>
        <body>
        </body>
    </html>
    <script src="public.js">
    </script>
    <script>
        /*
        涉及的事件 :
        onmousedown
        onmousemove : 创建div 并设置div的位置 为鼠标当前位置
        onmouseup : 取消移动
         */
        document.onmousedown = function(e){
            e.preventDefault();
            document.onmousemove = function(e){
                var e = e || event;
                var oDiv = create("div");
                oDiv.className = "active";
                document.body.appendChild(oDiv);
                oDiv.style.backgroundColor = getColor();
                oDiv.style.left = e.pageX + "px";
                oDiv.style.top = e.pageY + "px";
            }
            document.onmouseup = function(){
                document.onmousemove = null;//取消移动
            }
            
            //return false;
        }
    </script>
  • 相关阅读:
    K2 BPM介绍(2)
    K2 BPM介绍(1)
    认识BPM
    使用VS Code发布博客
    IIS 使用 HTTP/2
    IIS 8的第一次请求不变慢如何配置
    C# 图片识别技术(支持21种语言,提取图片中的文字)
    第九讲 C#练习题
    c#基础 第八讲
    c#基础 第六讲
  • 原文地址:https://www.cnblogs.com/tis100204/p/10319180.html
Copyright © 2011-2022 走看看