【发布时间】:2019-03-27 13:32:23
【问题描述】:
我想沿 SVG 路径为多个 SVG 对象设置动画。目标是为新兴技术创建 Gartner HypeCycle 的动画版本。我在 powerpoint 中有一个旧动画,但想让它对网络友好。
每个对象(对于 HypeCycle 来说最终将是一项技术)需要根据一组不同的 keyTimes 和 keyPoints 移动,例如他们需要以不同的速度移动。我在我发布的代码中有这个工作,世界上一切都很好,当我点击一个按钮时动画开始,然后连续循环。快乐的日子。
但是,我想在页面上添加一个滑块,这样当我单击按钮时,动画就不会开始,而是由滑块控制,并根据一组沿路径移动所有点定义的关键点(可能在 JSON 文件中)。
所以我想做两件事 (1) 使用滑块控制动画(但仍然为每个圆圈定义了 keyPoints/keyTimes,因此它们以不同的速度移动) (2) 从 JSON 文件中获取每个对象的 keyTimes 和 keyPoints。
谢谢
<?xml version="1.0" encoding="iso-8859-1" ?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG Tiny 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<!-- style change colour on hover -->
<style>
circle.circle1 {fill: rgb(0,0,22);transition: fill 0.5s ease;}
circle.circle1:hover {fill: rgb(0,255,255);}
circle.circle2 {fill: rgb(0,100,0);transition: fill 0.5s ease;}
circle.circle2:hover {fill: rgb(0,255,255);}
circle.circle3 {fill: rgb(100,0,0);transition: fill 0.5s ease;}
circle.circle3:hover {fill: rgb(0,255,255);}
</style>
<svg width="400px" height="400px" viewBox="0 0 400 400"
xmlns="http://www.w3.org/2000/svg" version="1.1" baseProfile="tiny"
xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- draw path and circles -->
<path id="hypecurve" d="M12.967,349.469c15.107-87.283,25.932-180.142,54.214-264.61c31.17-93.095, 54.138, 17.688,65.096,53.934c11.354,37.558,23.177,74.976,34.309,112.6c26.534,89.679,79.275-25.286,92.183-45.57c11.749-18.462,20.938-43.699,69.798-48.289c70.298-6.604,177.054-4.848,224.858-5.774" fill="none" stroke="#444" stroke-width="3"/>
<circle class= "circle1" id="c1" cx="0" cy="0" r="5" fill="#004" />
<circle class= "circle2" id="c2" cx="0" cy="0" r="6" fill="#66f" />
<circle class= "circle3" id="c3" cx="0" cy="0" r="7" fill="#00f" />
<!-- button to start animation -->
<rect id="startButton" style="cursor:pointer;"x="20" y="350" rx="5" height="25" width="80"fill="#EFEFEF" stroke="black" stroke-width="1" />
<text x="60" y="370" text-anchor="middle" style="pointer-events:none;">Click me</text>
<animateMotion xlink:href="#c1"
begin="startButton.click"
dur="10s"
calcMode="linear"
repeatDur="indefinite">
<mpath xlink:href="#hypecurve" />
</animateMotion>
<!-- these are the attributes I want to update dynamically -->
<animateMotion xlink:href="#c2"
begin="startButton.click"
dur="10s"
calcMode="linear"
keyPoints="0.3;0.35;0.375;0.4;0.45;0.5;0.6;0.61;0.7;0.8;1"
keyTimes="0;0.19;0.36;0.51;0.64;0.75;0.84;0.91;0.96;0.99;1"
repeatDur="indefinite">
<mpath xlink:href="#hypecurve" />
</animateMotion>
<animateMotion xlink:href="#c3"
begin="startButton.click"
dur="10s"
calcMode="linear"
keyPoints="0.0;0.1;0.2;0.3;0.4;0.5;0.6;0.7;0.8;0.9"
keyTimes="0;0.19;0.36;0.51;0.64;0.75;0.84;0.91;0.96;0.99"
repeatDur="indefinite">
<mpath xlink:href="#hypecurve" />
</animateMotion>
</svg>
【问题讨论】:
标签: svg svg-animate