Advertisement
Guest User

Untitled

a guest
Sep 18th, 2014
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <div class="relative-con">
  2. <div class="relative-con-right">Slide One</div>
  3. <div class="relative-con-right">Slide Two</div>
  4. <div class="relative-con-right">Slide Three</div>
  5. </div>
  6.  
  7. $('.relative-con-righ').click(function(event) {
  8. $(this).animate({'float': 'left'}, "slow");
  9. });
  10.  
  11. .relative-con { position: relative; width: 600px; height: 30px; background: white;}
  12. .relative-con-right { position: relative; width: 10px; height: 30px; background: red; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement