为什么没有代码可以下载

来源:4-2 移动和直线命令

webkong

2015-04-24 18:01

为什么没有代码可以下载

写回答 关注

2回答

  • champ
    2016-12-22 05:26:16
    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="UTF-8">
        <title>Path Demo</title>
        <style>
            #input {
                position: fixed;
                bottom: 25px;
                left: 0;
                width: 100%;
                height: 50px;
                padding: 0 25px;
                font-size: 32px;
                border: none;
                border-top: 2px solid gray;
            }
        </style>
    </head>
    <body>
        <svg xmlns="http://www.w3.org/2000/svg" height="800">
            <path id="path" d="M 0 0 L 100 100" stroke="green" fill="none" stroke-width="2"></path>
        </svg>
    
        <input id="input" type="text" value="M 0 0 L 100 100">
    
        <script>
            input.addEventListener('input', function() {
                path.setAttribute('d', input.value);
            }, false);
        </script>
    </body>
    </html>

    按照老师的界面,自己做的,老师应该不是这样实现的,因为他可以选中数字之后,按上下键实现快速调整数字,不知道这个到底是怎么做的

  • qq_月光_2
    2016-06-23 18:23:21

    没有找到,求源码

走进SVG

SVG是HTML5 中矢量图的标记语言,学习后掌握更多的干货

52639 学习 · 213 问题

查看课程

相似问题