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
Using the js-es6 branch, I had a countdown timer with visible seconds. On all of the iOS devices we tested, the clock would consistently disappear while scrolling. I found that forcing GPU acceleration using rules like this resolved our issue:
Using the js-es6 branch, I had a countdown timer with visible seconds. On all of the iOS devices we tested, the clock would consistently disappear while scrolling. I found that forcing GPU acceleration using rules like this resolved our issue:
.flip-clock-list { -webkit-transform: translateZ(0); -webkit-perspective: 1000; -webkit-backface-visibility: hidden; }
The text was updated successfully, but these errors were encountered: