Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2014
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <div id='container'>
  2. <div id='wrapper'>
  3. <a id='wrapper_photo' href=""></a>
  4. <a id='wrapper_video' href=""></a>
  5. </div>
  6. </div>
  7.  
  8. #container{
  9. width:760px;
  10. height:25px;
  11. background:#000000;
  12. overflow:hidden;
  13. }
  14.  
  15. #wrapper {
  16. width:1520px;
  17. height:25px;
  18. background-color:#0F0;
  19. position:relative;
  20. left:-380px;
  21. }
  22.  
  23. #wrapper_photo{
  24. width:760px;
  25. height:25px;
  26. background-color:#666666;
  27. float:left;
  28. }
  29.  
  30. #wrapper_video {
  31. width:760px;
  32. height:25px;
  33. background-color:#0000CC;
  34. float:left;
  35. }
  36.  
  37. $(document).ready(function() {
  38. $('#wrapper_photo').click(function() {
  39. $('#wrapper').animate({
  40. left:"-=380"},
  41. 5000);
  42. });
  43. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement