用纯CSS从一个点到另一个点绘制一条线(路径)

时间:2014-08-05 15:01:24

标签: html css3

我在下面的这条路径中有一个动画图像,并希望路径可见。

CSS

div {
    width:10px;
    height:10px;
    background:red;
    position:relative;
    -webkit-animation-name:Player1;
    -webkit-animation-duration:100s;
    -webkit-animation-timing-function:cubic-bezier(0.1,0.1,0.1,0.1);
    -webkit-animation-delay:2s;
    -webkit-animation-iteration-count:5;
    -webkit-animation-direction:normal;
    -webkit-animation-play-state:running
}

@-webkit-keyframes Player1 {
0% {
    background:red;
    left:20px;
    top:20px
}

25% {
    background:#ff0;
    left:800px;
    top:200px
}

50% {
    background:blue;
    left:950px;
    top:500px
}

75% {
    background:green;
    left:0;
    top:800px
}

100% {
    background:red;
    left:0;
    top:0
}
}

HTML

<div></div>

Here is a fiddle.

是否有可能只用css代码链接它们?如果没有,请你帮我一个代码?

3 个答案:

答案 0 :(得分:7)

这显然是SVG(结构化矢量图形)的用途。

<svg>
    <polyline points="20,20 800,200 950,500 0,800 0,0"></polyline>    
</svg>

Working sample here

Or at a usable speed here

答案 1 :(得分:0)

您可以计算点之间的角度和距离,并使用CSS变换将线条推到所需的位置。这是一个jsfiddle。这有点粗糙,但我想你会明白这一点。

var startPoint=[200,200], 
    endPoint=[300,300],
    rise=endPoint[1]-startPoint[1],
    run=endPoint[0]-startPoint[0],
    slope=rise/run,
    DEGREES=57.2957795,
    width=Math.sqrt((rise*rise)+(run*run));
var line=document.getElementById('line');
line.style.top=startPoint[0]+'px';
line.style.left=startPoint[1]+'px';
line.style.width=width+"px";
line.style.transform= "rotate("+(Math.atan(slope)*DEGREES)+"deg)";
line.style.transformOrigin= "0 0";

答案 2 :(得分:0)

您可以在svg(也可以是反向的)“ stroke-dashoffset”中为线的起点设置动画,就像在Codepen中的示例一样

@keyframes dash {
  0% {
    stroke-dashoffset: 500;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

https://codepen.io/Yudo/full/OaEWXK