Advertisement
Guest User

Untitled

a guest
Aug 29th, 2014
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. Html:
  2. <div class="go-to-top text-center">
  3. <a>
  4. <span class="glyphicon glyphicon-arrow-up"></span>
  5. </a>
  6. </div>
  7. ------------------------------------------------------------------
  8. Css:
  9. .go-to-top {
  10. position: fixed;
  11. bottom: 8px;
  12. right: 15px;
  13. height: 38px;
  14. width: 38px;
  15. border: 2px #999999 solid;
  16. border-radius: 50%;
  17. line-height: 38px;
  18. z-index: 10;
  19. cursor: pointer;
  20. }
  21. -----------------------------------------------------------------
  22. JQuery:
  23. $(".go-to-top").click(function () {
  24. $("html,body").animate({ scrollTop: 0 }, "slow");
  25. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement