Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
  2. <script type="text/javascript">
  3. $(document).ready(function(){
  4. $('#prev').click(function(){
  5. $('li:last').detach().prependTo('ul').css({'margin-top':'-=100px'})
  6. $('li:first').stop().animate({'margin-top':'0px'},1000)
  7. })
  8.  
  9. $('#next').click(function(){
  10. $('li:first').stop().animate({'margin-top':'-=100px'},1000,function(){
  11. $(this).detach().css({'margin-top':'0px'}).appendTo('ul')
  12. })
  13. })
  14. })
  15. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement