Scroll Up & Down Arrows

Scroll Up & Down arrows, if you leave mouse on arrow it will slowly scroll

  1. // ==UserScript==
  2. // @name Scroll Up & Down Arrows
  3. // @namespace mypage
  4. // @version 1.0
  5. // @description Scroll Up & Down arrows, if you leave mouse on arrow it will slowly scroll
  6. // @include *
  7. // @copyright 2014, drakulaboy
  8. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js
  9. // ==/UserScript==
  10.  
  11.  
  12. var scroll_speed = 500;//The smaller, the faster.When you click the button, it works.
  13. var move_speed = 50;//The smaller, the faster. When your mouse moves on the button, it works.
  14. var toumingc_control = 1;//If you don't want to get the opacity(tou'ming in Chinese) changed, set it to 0;
  15.  
  16. //if(/https?:\/\/twitter\.com/i.test(window.location.href)) document.getElementById("doc").style.position = "static";
  17.  
  18. function up() {
  19.  
  20. $(window).scrollTop($(window).scrollTop() - 1);
  21. fq = setTimeout(up, move_speed)
  22. };
  23.  
  24. function dn() {
  25.  
  26. $(window).scrollTop($(window).scrollTop() + 1);
  27. fq = setTimeout(dn, move_speed)
  28. };
  29.  
  30. function create_button() {
  31. if(document.body){
  32. var a = document.createElement('span');
  33. var b = document.createElement('span');
  34. a.id = "shang";
  35. b.id = "xia";
  36. var css_a = 'opacity:1;-moz-transition-duration:0.2s;background:url(data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAUCAYAAACAl21KAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAB+SURBVDhPY1i1atV/amAGahgCMoNhaIGlS5cKAp19BoRBbLJcj2QILDJINwzoAmMgfoclIkBixkS5DI8hMJcRNgxoSBoOl6CnNZBhaVhdBjWE1MSJahjQkA4KEmYH2GUrV66cSYEhYB+AzKBtFiHkQqKiH6Ro1CDCQTWgYQQAs81DU0G/83sAAAAASUVORK5CYII=) no-repeat scroll 50% 50% rgba(0, 0, 0, 0.7);border-radius:5px 0 0 5px;cursor:pointer;height:36px;margin-top:-24px;width:36px;position:fixed;right:10px;bottom:53%;z-index:1';
  37. var css_b ='opacity:1;-moz-transition-duration:0.2s;background:url(data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAUCAYAAACAl21KAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACPSURBVDhPY2DAAlatWvUfH8amB6vYqEGEg2pgw4iQ7cTKM6xcuXImsYpxqQOZAQ4woIIOCgzrQAl1oEFpZBiWhitFgwx7R4SBIDXYDYGZDFRgTMAwkCHGhBMRJMxwGUa8ITCbli5dKgg08AySN8+AxIhyCboiJMPIN4Qsm6miiYioxltawvSDYogohYTUAQC80UNTOht/YwAAAABJRU5ErkJggg==) no-repeat scroll 50% 50% rgba(0, 0, 0, 0.7);border-radius:5px 0 0 5px;cursor:pointer;height:36px;margin-top:-24px;width:36px;position:fixed;right:10px;top:53%;z-index:1';
  38.  
  39. a.style.cssText = css_a;
  40. b.style.cssText = css_b;
  41. a.addEventListener('mouseover',up, false);
  42. b.addEventListener('mouseover',dn, false);
  43. a.addEventListener('mouseout',function(){clearTimeout(fq);},false);
  44. b.addEventListener('mouseout',function(){clearTimeout(fq);},false);
  45. a.addEventListener('click', function(){ $("html,body").animate({scrollTop:0},scroll_speed); }, false);
  46. b.addEventListener('click', function(){ $("html,body").animate({scrollTop:$(document).height()},scroll_speed); }, false);
  47.  
  48. if(toumingc_control){
  49. $(window).scroll(function(){
  50. if($(window).scrollTop()){
  51. a.style.display = "";
  52. }
  53. else{
  54. a.style.display ="none";
  55. }
  56. a.style.opacity=($(window).scrollTop())/($(document).height()-$(window).height());
  57. b.style.opacity=1 - ( a.style.opacity );
  58. });
  59. }
  60. document.body.appendChild(a);
  61. document.body.appendChild(b);
  62. }
  63. };
  64. if(window != window.top) return 0;
  65. if($(document).height()-$(window).height()) create_button();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址