1.5.9 disables translate3d animations
See original GitHub issueI installed slick 1.5.9 on a new site and noticed the animations were jerky. I looked back at a previous site where they’re smooth and found the old site is using 1.5.7. In the inspector, I see 1.5.9 animates left
while 1.5.7 animates transform: translate3d
.
Issue Analytics
- State:
- Created 8 years ago
- Reactions:1
- Comments:7 (2 by maintainers)
Top Results From Across the Web
CSS transform translate3d image animation strange anti ...
I have a requestAnimationFrame looping 60fps and setting the left position of a JPG image on every frame at sub-pixel intervals. var image1...
Read more >transition-duration - CSS: Cascading Style Sheets | MDN
The transition-duration CSS property sets the length of time a transition animation should take to complete. By default, the value is 0s, ...
Read more >CSS Animation Libraries
These are the kind of libraries to look at. I wholeheartedly think you should both 1) learn how to animate things in CSS...
Read more >CSS Animations: Introduction & Examples - Stack Diary
This is a comprehensive introduction to CSS animations through more ... added a max-height overflow to this article to enable a scrollbar.
Read more >24 Creative and Unique CSS Animation Examples to Inspire ...
Explore 24 incredible examples of the CSS animation feature in ... x="0px" y="0px" viewBox="0 0 73 63" style="enable-background:new 0 0 73 ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Poking through the code, I found
useTransform
and saw it is false by default. I addeduseTransform: true
to my settings, and it works as expected now.yeah this was a huge screw up