Quantcast
Channel: Topic Tag: footer | WordPress.org
Viewing all articles
Browse latest Browse all 13554

emilytaylorj on "Applying a Fade Effect to Only Specific Images and Links"

$
0
0

Here is my website, and I'm using this CSS to apply my fade effect for my post images:

.post img {
opacity: 0.6;
transition: opacity .2s ease-in-out;
-moz-transition: opacity .2s ease-in-out;
-webkit-transition: opacity .2s ease-in-out;
}
.post img:hover{
opacity: 1.0;
transition: opacity .2s ease-in-out;
-moz-transition: opacity .2s ease-in-out;
-webkit-transition: opacity .2s ease-in-out;
}


Viewing all articles
Browse latest Browse all 13554

Trending Articles