码迷,mamicode.com
首页 > 其他好文 > 详细

svg

时间:2019-01-03 20:40:56      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:anim   1.0   ice   func   head   document   init   das   UNC   

<!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>
    <style>
        svg{
            width: 500px;
            height: 500px;
            border:1px solid red;
        }
        #s line:nth-of-type(2){
            stroke-dasharray: 100,100;
            stroke-dashoffset: 100;
        }
    </style>
</head>
<body>
    <svg id="s">
       <line x1="0" y1="5" x2="100" y2="5" stroke="purple" stroke-width="10" />
       <line x1="0" y1="5" x2="100" y2="5" stroke="red" stroke-width="10" />
    </svg>
</body>
<script>
    var l=document.querySelector("#s line:nth-of-type(2)");
    var timer=null;
    var i=100;
    function fn(){
        timer=requestAnimationFrame(function(){
            i--; 
            l.style.strokeDashoffset=i;
            console.log(i);
            if(i>0){
                fn();
            }
        })
    }
    fn();
</script>
</html>

 

svg

标签:anim   1.0   ice   func   head   document   init   das   UNC   

原文地址:https://www.cnblogs.com/bao2333/p/10216590.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!