Friday, 23 August 2013

Get images to fade out

Introduction:

Here i will explain Get images to fade out.

Description:

This article i will explain image fade out using css





.collection-type-gallery #slideshow .slide img { /* Set the transition on img without hover */
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out; 
}

.collection-type-gallery #slideshow .slide img:hover{opacity:1;}

No comments:

Post a Comment