Advertisement
Guest User

No title

a guest
Mar 3rd, 2015
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <a href="#" class="scrollup">Scroll</a>
  2. <script type="text/javascript">
  3. $(document).ready(function(){
  4.  
  5. $(window).scroll(function(){
  6. if ($(this).scrollTop() > 100) {
  7. $('.scrollup').fadeIn();
  8. } else {
  9. $('.scrollup').fadeOut();
  10. }
  11. });
  12.  
  13. $('.scrollup').click(function(){
  14. $("html, body").animate({ scrollTop: 0 }, 600);
  15. return false;
  16. });
  17.  
  18. });
  19. </script>
  20.  
  21. <style>
  22. .scrollup{
  23. width:64px;
  24. height:64px;
  25. opacity:0.5; /*Здесь можете менять значение от 0 до 1*/
  26. position:fixed;
  27. bottom:500px;
  28. right:20px;
  29. display:none;
  30. text-indent:-9999px;
  31. background: url(https://sites.google.com/site/poleznoznat/r2.png) no-repeat; /*Путь к картинке, на которую будут нажимать для подъема наверх страницы*/
  32. outline:0;
  33. }
  34. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement