作者:吉的堡少儿英语学校 | 来源:互联网 | 2023-02-13 23:05
1> Harry..:
尽管MSDN表示,从MS Edge开始,stroke-dashoffset属性可以通过CSS动画和过渡设置动画,但是由于某些原因,它仍然不起作用。如果我们使用stroke-dasharray
而不是来重新创建此动画,stroke-dashoffset
则它将在Edge中按预期工作。
但是它仍然不能在IE11或更低版本中使用,因为再次如MSDN所示,stroke-dasharray
可以使用CSS动画和仅从MS Edge过渡的动画。
修改后的动画仍然可以在最新版本的Chrome,Firefox和Opera中使用。
#my-circle {
stroke: blue;
stroke-dasharray: 1100;
stroke-dashoffset: 0;
animation: draw-first-shape 1s forwards 3;
}
@keyframes draw-first-shape {
from {
stroke-dasharray: 0, 1100;
}
to {
stroke-dasharray: 1100, 1100;
}
}