0

我在 SVG 数据中有一个模板。在这里,我有一个我想跳动的文本。

html:

<tspan class="text animated pulse" x="14.325" y="39.18">50</tspan></text>

它不起作用。

这是codepen的链接

4

3 回答 3

0

hy,谢谢你的回答.. 不,这不是选项;((我想知道这个 css 类文本动画脉冲

<g transform="matrix(1,0,0,1,165.514,113.873)" class="no-kerning">
<text stroke-width="0" stroke="#5F5E5E" stroke-linejoin="round" fill="#5F5E5E" font-family="CurrencyRegular" font-size="40"><tspan class="text animated pulse" x="14.325" y="39.18">50</tspan></text>
</g>
于 2018-08-17T13:11:59.267 回答
0

也许试试这样?

tspan.text.animated.pulse {
  animation: pulse-text infinite;
  animation-duration: 1s;
}

@keyframes pulse-text {
  0% {font-size: 1em;}
  50% {font-size: 1.1em;}
  100% {font-size: 1em;}
}
于 2018-08-17T12:59:16.463 回答
0

对于 tspan 元素转换属性将不起作用。您可以尝试为字体大小设置动画。检查更新的代码。

https://codepen.io/anon/pen/WKVOzB

代码更改:-

tspan.text.animated.pulse {
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
   0%,100% {font-size:40px;}
   50% {font-size:50px;}
}
于 2018-08-17T13:28:56.013 回答