Fading Effect for Images
1. Copy and Paste this code before <style type=”text/css”> tags or something like that.
img{
-webkit-transition: opacity 0.8s linear;
opacity: 0.60;
}
img:hover{
-webkit-transition: opacity 0.8s linear;
opacity: 1;
}

**you can change the numbers if you want


