Advertisement
bloggerwan

Animated Scrollup

Oct 26th, 2013
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.38 KB | None | 0 0
  1. <!-- animated scrollup start -->
  2. <a href="#" class="scrollup">Scroll</a>
  3. <style type="text/css">
  4. .scrollup {
  5. width:40px;
  6. height:40px;
  7. opacity:0.3;
  8. position:fixed;
  9. bottom:50px;
  10. right:100px;
  11. display:none;
  12. text-indent:-9999px;
  13. background:url('http://4.bp.blogspot.com/-JbaDT9YqsI8/UQu-cM05oVI/AAAAAAAADb8/wytlgtHS8sU/s1600/Button-Upload-icon.png') no-repeat;
  14. outline: none !important;
  15. }
  16. </style>
  17. <script type="text/javascript">
  18. jQuery(document).ready(function($){
  19.     $(window).scroll(function(){
  20.         if ($(this).scrollTop() > 100) {
  21.             $('.scrollup').fadeIn();
  22.         } else {
  23.             $('.scrollup').fadeOut();
  24.         }
  25.     });
  26.     $('.scrollup').click(function(){
  27.         $("html, body").animate({ scrollTop: 0 }, 600);
  28.         return false;
  29.     });
  30. });
  31. </script>
  32. <!-- animated scrollup end -->
  33.  
  34. Tombol lainnya:
  35. http://3.bp.blogspot.com/-39mezUNGK_s/UQu-bt0yP3I/AAAAAAAADb0/tSEkSGXnucg/s1600/Action-arrow-blue-double-up-icon.png
  36.  
  37. http://3.bp.blogspot.com/-uzhhkWJsnns/UQu-b2XbgWI/AAAAAAAADb4/yxZepNke3Yk/s1600/arrow-up-icon+(1).png
  38.  
  39. http://1.bp.blogspot.com/-H9FeLj7CD-I/UQu-cumUP5I/AAAAAAAADcE/ri7wY89umU0/s1600/arrow-up-icon+(2).png
  40.  
  41. http://3.bp.blogspot.com/-t1cfUfD_igs/UQu-c-S1YEI/AAAAAAAADcM/aSQE7HQl6ow/s1600/arrow-up-icon.png
  42.  
  43. http://1.bp.blogspot.com/-XLKX0U9GqDM/UQu-dPjNC6I/AAAAAAAADcQ/qUHlqjMqNqc/s1600/box-up-icon.png
  44.  
  45. *** http://dipoplus.blogspot.com/2013/10/memasang-animated-scrollup.html ***
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement