Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- NORMAL
- #lsidebar img {
- width: 100px;
- padding:10px;
- border:1px solid #f0f0f0;
- -webkit-transition: opacity 0.7s linear;
- opacity: 0.7s;
- -webkit-transition: all 0.6s ease-out;
- -moz-transition: all 0.6s ease-out;
- transition: all 0.6s ease-out
- }
- #lsidebar img:hover {
- opacity:.9;
- -webkit-transition: opacity 0.7s linear;
- opacity: 0.7s;
- -webkit-transition: all 0.6s ease-out;
- -moz-transition: all 0.6s ease-out;
- transition: all 0.6s ease-out;
- }
- SATURATE
- #lsidebar img {
- filter: url(http://static.tumblr.com/eptm5us/ueTmafr4p/filters.svg#grayscale); /* Firefox 3.5+ */
- filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, IE10 */
- filter: gray; /* IE6-9 */
- -webkit-filter: grayscale(20%); /* Chrome 19+ & Safari 6+ */
- -webkit-transition: all .7s ease; /* Fade to color for Chrome and Safari */
- -webkit-backface-visibility: hidden; /* Fix for transition flickering */}
- #lsidebar img:hover {
- filter: none;
- -webkit-filter: grayscale(0%);}
- FADE
- #lsidebar img {
- width: 100px;
- padding:10px;
- border:1px solid #f0f0f0;
- -webkit-transition: opacity 0.7s linear;
- opacity: .8;
- -webkit-transition: all 0.6s ease-out;
- -moz-transition: all 0.6s ease-out;
- transition: all 0.6s ease-out
- }
- #lsidebar img:hover {
- opacity:1.0;
- -webkit-transition: opacity 0.7s linear;
- opacity: 0.7s;
- -webkit-transition: all 0.6s ease-out;
- -moz-transition: all 0.6s ease-out;
- transition: all 0.6s ease-out;
- }
Advertisement
Add Comment
Please, Sign In to add comment