我的 SVG 动画被截断了
My SVG Animation is getting cut off
我是 SVG 动画的新手,我遇到了 SVG 圆圈在动画期间被切断的问题。有人知道这是什么原因吗?
TweenMax.to(".ease-out", 6, {x:600, ease:Back.easeOut});
您需要将 SVG 标签内的宽度指定为 100%。
<SVG width="100%"></SVG>
我是 SVG 动画的新手,我遇到了 SVG 圆圈在动画期间被切断的问题。有人知道这是什么原因吗?
TweenMax.to(".ease-out", 6, {x:600, ease:Back.easeOut});
您需要将 SVG 标签内的宽度指定为 100%。
<SVG width="100%"></SVG>