【发布时间】:2021-10-27 17:26:28
【问题描述】:
这可能看起来很奇怪,但我想通过一个固定点移动一些 SVG 路径。我知道我们如何通过<animateMotion> 的路径为点设置动画,我试图获得相同的结果,但点将被固定并且路径将通过它。
到目前为止,我认为我可以使用path.getTotalLength(),我制作了一个循环来在我的路径上创建点,并且我想为我的路径设置动画以使其以每个点为中心,但我对 SVG 和 Javascript 的了解非常有限。
const path = document.getElementById('chemin')
let svg = document.getElementById("mySVG");
let totalLength = path.getTotalLength();
let intersections = 30;
for (var i = 0; i <= intersections; i++) {
let distance = i * 1 / intersections * totalLength;
let point = path.getPointAtLength(distance);
addCircleToSVG(point.x, point.y);
}
function addCircleToSVG(x, y) {
let circle = document.createElementNS("http://www.w3.org/2000/svg", 'circle');
circle.setAttribute("cx", x);
circle.setAttribute("cy", y);
circle.setAttribute("r", "5");
circle.setAttribute("fill", "#8888ff");
svg.appendChild(circle);
}
<div class="svgDiv">
<svg version="1.1" id="mySVG" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px" y="0px" viewBox="0 0 1306 989" style="enable-background:new 0 0 1306 989;" xml:space="preserve">
<style type="text/css">
.st1 {
fill: #fff;
stroke: #000000;
stroke-width: 3;
stroke-miterlimit: 10;
}
.st2 {
fill: none;
stroke: #ff0000;
stroke-width: 8;
stroke-miterlimit: 10;
stroke-linecap: round;
}
</style>
<g>
<path id="chemin" class="st2" d="M315,443l13-11h13l13-2h9l7.5,1.5h10l8-4l4-5l15,5l10,4h12h16l16-2l4-1h11h9l8-6h6l8-2l5-3l4-2l5-4l3-3v-4l4-3
l5-1h11c0,0,0,0,2,0s12,0,12,0l6,3l3,4l4,4l6,2c0,0,1,0,3-1s6-3,6-3l3-2l5,1h6l8,3l8,1c0,0,4,1,5,1s9,0,9,0l7,1h9h5l6-2l4-1l4-3
l5-2l6-4l4-5l4-4l2-5c0,0,1-2,1-4s0-5,0-5v-4c0,0,4,3,4,3l7,2l5,3l6,1l11,2l8,2l7,5l10,2c3-3,6-5,6-5l4-3l4-2l4,2l4-1l-2-6l5-5
c0,0,8,3,8,0s4-6,4-6l6-4l3-4l6-6c0,0,0-3-2-7s-5-8-5-8s-2-5-3-9s-4-9-4-11s2-6,1-8s-5-7-5-7v-8l-1-7v-5l-8-11">
</path>
</g>
</svg>
</div>
起初这似乎是一个想法,但现在我觉得它不会让我到任何地方,我被卡住了......
编辑: 一张图可能更容易理解 that's the "steps" I want
【问题讨论】:
-
svg 是否居中?还是与每个点相关的线?所以就像在添加点之前线条似乎对每个点进行了动画处理(比如印第安纳琼斯地图样式?或者like this 带点?)是的,抱歉,我仍然不确定我是否正在可视化意图,稍后会重新访问为了好玩,很快就出发了。 :D
-
我添加了一张图片来显示我正在尝试做的事情,它可能会有所帮助 ^^' 点始终居中,路径通过它并遵循它自己的路径......没问题,谢谢!
-
您想逐个突出显示每个点,然后将路径转换为该点坐标?
标签: javascript animation svg path