Advertisement
swagatmali

Fade Effect To image

Nov 27th, 2014
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.30 KB | None | 0 0
  1. HTML-
  2.  
  3. <div class="aligncenter" id="loginImgLogo">
  4.             <img id="imglogin" class="imglogo" style="display:none;" src="img/ic_launcher.png" >
  5.             </div>
  6.  
  7. JS-
  8.  
  9.  
  10. $(document).ready(function(){
  11.  $("#loginImgLogo").ready(function(){
  12.         $("#imglogin").fadeIn(10000);
  13.     });
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement