A
A
arver2018-11-08 13:19:02
css
arver, 2018-11-08 13:19:02

How to implement delay in infinite animation?

How to implement a delay in an infinite animation? I looked at similar topics, it was written there that you need to remove repeatCount = "indefinite". But now the animation works only once.

<svg>
      <circle id="green" r="19" cx="50" cy="50" fill="green" fill-opacity=".82"/>
      <animate
              xlink:href="#green"
              attributeName="r"
              from="19"
              to="30"
              dur="3s"
              begin="3s;green.end+5s"/>
</svg>

Answer the question

In order to leave comments, you need to log in

1 answer(s)
M
Martovitskiy, 2018-11-08
@arver

<svg>
  <circle  r="19" cx="50" cy="50" fill="green" fill-opacity=".82">
    <animate id="green" attributeType="CSS" attributeName="r"
             from="19" to="30" dur="3s" begin="3s;green.end+3s" />
  </circle>
</svg>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question