You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem <animate> tags in svg should be able to control the start timing of the animation by setting the begin attribute. However, in Yew, the animation will always starts playing immediately. (it will play again if begin is set to some time)
Expected behavior
The flash of white should only play once, at the 3 second mark. However, it plays at the beginning, and plays at the 3s mark.
In fact, no matter what you set begin to (even "indefinite") it will always play at the beginning.
Screenshots
Kooha-2024-10-30-06-44-36.mp4
Environment:
Yew version: 0.21
Browser: Chrome
The text was updated successfully, but these errors were encountered:
I notice the default begin value is "0s", does yew somehow render the animate tag first without the attribute, triggering the animation and then add the attribute in a second render?
Problem
<animate>
tags in svg should be able to control the start timing of the animation by setting thebegin
attribute. However, in Yew, the animation will always starts playing immediately. (it will play again if begin is set to some time)Minimal Reproducible Code
Expected behavior
The flash of white should only play once, at the 3 second mark. However, it plays at the beginning, and plays at the 3s mark.
In fact, no matter what you set
begin
to (even "indefinite") it will always play at the beginning.Screenshots
Kooha-2024-10-30-06-44-36.mp4
Environment:
The text was updated successfully, but these errors were encountered: