Advertisement
Guest User

Untitled

a guest
May 5th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <script type="text/javascript">
  2. $(document).ready(function() {
  3. var hashTagActive = "";
  4. $(".scroll").click(function (event) {
  5. if(hashTagActive != this.hash) {
  6. event.preventDefault();
  7. var dest = 0;
  8. if ($(this.hash).offset().top > $(document).height() - $(window).height()) {
  9. dest = $(document).height() - $(window).height();
  10. } else {
  11. dest = $(this.hash).offset().top;
  12. }
  13. $('html,body').animate({
  14. scrollTop: dest
  15. }, 2000, 'swing');
  16. hashTagActive = this.hash;
  17. }
  18. });
  19. });
  20. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement