Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2014
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. object.onload=function(){
  2. $("bilder").animate({"opacity": 0.5})
  3. }
  4.  
  5. $("#bilde1").hover(function(){
  6. $(this).stop().animate({"opacity": 1});
  7. },function(){
  8. $(this).stop().animate({"opacity": 0.5});
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement