css 笔记:CSS与SVG实现元素沿环形路径动画 - 2

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 笔记:CSS与SVG实现元素沿环形路径动画 - 2相关的知识,希望对你有一定的参考价值。

/*
 * offset-path in Chrome 56+ = motion-path in Chrome 46+ 
 * offset-distance in Chrome 56+ = motion-offset in Chrome 46+ 
 */
@keyframes move {
  from { offset-distance: 0; }
  to   { offset-distance: 100%; }
}
.mover {
  offset-path: path("M25,125a100,100 0 1,0 200,0a100,100 0 1,0 -200,0");
  animation: move 3s linear infinite;
  will-change: offset-distance;
}

以上是关于css 笔记:CSS与SVG实现元素沿环形路径动画 - 2的主要内容,如果未能解决你的问题,请参考以下文章

html 笔记:CSS与SVG实现元素沿环形路径动画 - 3

html 笔记:CSS与SVG实现元素沿环形路径动画 - 1

[CSS] svg路径动画

svg中不可以使用css 3d动画吗

仅在将鼠标悬停在圆圈上时才沿文本路径为 SVG 文本设置动画

css怎么做曲线路径动画