我正试图动画一个U形虚线边界,使它从左到右不断移动。
需要帮助的代码PLS〈3.
这里是代码。
.curved-dots-path {
align-self: center;
width: 70%;
border: 5px dashed var(--org-primary-color);
border-top: none;
border-radius: 0 0 50% 50%;
height: 25rem;
margin-top: -30rem;
}
image of U-shaped dashed border - animation to be moved from left to right
1条答案
按热度按时间nszi6y051#
创建SVG曲线,如果您不熟悉以编程方式创建SVG,您可以在Illustrator,Inkscape或任何其他SVG编辑器中绘制并导出它。
在SVG中添加stroke-dasharray属性。
stroke-dasharray: 15, 10;
意味着每一行的宽度为15 px,中间有5 px的间隙。stroke-dashoffset: 0
是起始位置,而stroke-dashoffset: -25
在破折号动画中是应该移动多少像素的笔划,将其设置为间隙和笔划宽度之和(25 px = 15 + 10)以避免跳跃。更新:
这是一个很好的在线tool,允许您根据自己的喜好自定义SVG路径。