Is it possible to apply a saturation effect with ease-out to my logo once the page is loaded, or does it only work with "hover"? Here is the code I'm using:
/* CSS*/
#logo {
-moz-transition: all 7s ease-out;
-o-transition: all 7s ease-out;
-webkit-transition: all 7s ease-out;
-ms-transition: all 7s ease-out;
transition: all 7s ease-out;
filter: saturate(120%);
-webkit-filter: saturate(120%);
-moz-filter: saturate(120%);
-o-filter: saturate(120%);
-ms-filter: saturate(120%);
cursor:default;
}
/* HTML */
<div id="logo">
<h4>MyLogo</h4>
</div>