How to Change The Speed of Image Rollovers

How to Change The Speed of Image Rollovers

The image rollovers are CSS3 transistions/animations and we have set a default value for them. If you would like to change this, follow the step below.
Edit css/all.css, find and change 0.3s to a lower value to speed up the animation, or a higher value to slow it down.
Copy to Clipboard-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out; 1-webkit-transition: all 0.3s ease-in-out;2-moz-transition: all 0.3s ease-in-out;3-o-transition: all 0.3s ease-in-out;4-ms-transition: all 0.3s ease-in-out;5transition: all 0.3s ease-in-out;Please note this is a customization that is outside of what we can provide for theme support. If you perform the customization, you will need to maintain the changes for future updates and also be able to troubleshoot any issues that arise. Thank you.

發表回覆

您的郵箱地址不會被公開。 必填項已用 * 標註