Guest User

Untitled

a guest
Apr 26th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. <script src="jquery-1.2.3.js" type="text/javascript"></script>
  2. <script type="text/javascript">
  3.  
  4. $(document).ready(function(){
  5. // grab images
  6. var up=$(this).find("img.up");
  7. var down=$(this).find("img.down");
  8.  
  9. // put click-event on down and find and animate imgage.newsblock
  10. $(down).click(function() {
  11. $(this).parents("#newsbox").find("img.newsblock").animate({marginTop:220}, "slow");
  12. };
  13.  
  14. // put click-event on down and find and animate imgage.newsblock
  15. $(up).click(function() {
  16. $(this).parents("#newsbox").find("img.newsblock").animate({marginTop:-220}, "slow");
  17. };
  18. });
  19.  
  20.  
  21. </script>
  22. </head>
  23.  
  24. <body style="background: url(gegenueberstellung_04.png) 0 0 no-repeat;height:800px;">
  25. <div id="newsbox">
  26. <img class="up" src="spacer.gif" height="17" width="17" />
  27. <img class="down" src="spacer.gif" height="17" width="17" />
  28.  
  29. <div id="showbox">
  30. <img class="newsblock" src="content.gif" />
  31. </div>
  32.  
  33. </div>
  34. </body>
Add Comment
Please, Sign In to add comment