笔记:CSS 与 SVG 实现元素沿环形路径动画 - 4
/* 以九点钟方向为起点做动画 */
.contain2 {
display: flex;
align-items: center;
justify-content: center;
}
.mover2 {
position: absolute;
left: 0;
transform-origin: 125px 15px;
}/* 以十二点钟方向为起点做动画 */
.mover1 {
margin: 0 auto 0;
transform-origin: 50% 125px;
}