[Webkit-unassigned] [Bug 273895] Simple text animation with transform: translateX() is broken on iOS and iPadOS (maybe MacOS, can't test it)

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu May 9 23:43:45 PDT 2024


https://bugs.webkit.org/show_bug.cgi?id=273895

--- Comment #3 from Cesare Gramatica <cesaregramatica at gmail.com> ---
For the record, I managed to fix temporarily using JS.

Animating the text like so:
"
window.onload = function() {
    myText.animate([
        { transform: `translateX(100vw)` },
        { transform: `translateX(-100%)` }
    ], {
        duration: 10000,
        iterations: Infinity
    });
}
"
instead of using CSS, seems to work properly.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20240510/efcd4538/attachment-0001.htm>


More information about the webkit-unassigned mailing list