Fade In / Fade Out with CSS Transition
It is easy to make fade in / fade out effect with pure CSS, means no need to any JavaScript or jQuery. But this fade in/out effect only working in latest browsers only, here is the list of the supported WebKit browsers:
Browsers list:
- Chrome 1.0
- Firefox(Gecko) 4.0(2)
- Internet Explorer 10
- Opera 10.5
- Safari (WebKit) 3.2
To make it all browser compatible you have to use jQuery or JavaScript, in jQuery it is simple with the fadein() and fadeout() function. There are few transition property that we are using in this fade in / out effect.
…