README 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. You can find new beta/RC released at http://code.google.com/p/jquery-nicescroll/
  2. Follow twitter https://twitter.com/nicescroll
  3. jquery.nicescroll
  4. v. 2.9.7 10-25-2012
  5. copyright 2011-12 InuYaksa*2012
  6. licensed under the MIT
  7. http://areaaperta.com/nicescroll
  8. https://github.com/inuyaksa/jquery.nicescroll
  9. https://twitter.com/nicescroll
  10. Nicescroll as a Greasemonkey plugin: http://userscripts.org/scripts/show/119910
  11. Nicescroll (as nice scroll for browsers) is a jquery (since 1.5) plugin, for nice scrollbars with a very similar ios/mobile style.
  12. It supports DIVs, IFrames and document page (body) scrollbars.
  13. Compatible with desktop browser: Firefox 4+, Chrome 5+, Safari 4+ (win/mac), Opera 10+, IE 6+. (all A-grade browsers)
  14. Compatible with mobile device: iPad/iPhone/iPod, Android 2.2+, Blackberry phones and Playbook (WebWorks/Table OS), Windows Phone 7.5 Mango.
  15. So you have scrollable divs with momentum for iPad 4+ and you have consistent scrollable areas for all desktop and mobile platforms.
  16. Sexy zoom feature, you can "zoom-in" the content of any nicescroll'ed div. Nice to use and nice to see, all the content of the div in fullscreen mode. It works on desktop (double click on div) either in mobile/touch devices using pinch gesture.
  17. On modern browsers hardware accelerated scrolling has implemented.
  18. Using animationFrame for a smoothest and cpu-saving scrolling. (when browser supports)
  19. Only vertical scrollbars supported in this version. (horizotal support on version 3 soon)
  20. Warning for IE6 users (why do you uses IE6 yet? Please updgrade to a more stable and modern browser), some feature can't work for limitation of the browser. Document (body) scrollbars can't appears, old (native browser) one is used. Some issues with IFrame scrolling.
  21. * FEATURES
  22. - simple installation and activation, it works with NO modification of your code. (some exceptions can happen, so you can write to me)
  23. - very stylish scrollbars, with no occupation on your window (original browser scrollbars need some of page space and reduces window/div usable width)
  24. - you can style main document scrollbar (body) too!! (not all script implements this feature)
  25. - on all browsers you can scroll: dragging the cursor, mouse wheel (speed customizable), keyboard navigation (cursor keys, pagup/down keys, home/end keys)
  26. - scroll is smooth (as modern tablet browsing), speed is customizable
  27. - zoom feature
  28. - hardware accelerated scroll (where available)
  29. - animation frame support for smoth scrolling and cpu-saving
  30. - dragging scroll mode with scrolling momentum (as touch device)
  31. - tested for all major browsers desktop and mobile versions
  32. - support for touch devices
  33. - support for multi-input devices (IE10 with MSPointer)
  34. - compatible with many other browsers, including IE6, Safari on Mac and WP7 Mango!
  35. - very customizable aspect of bar
  36. - native scroll events are working yet
  37. - fully integrated with jQuery
  38. - compatibile with jQuery UI, jQuery Touch, jQuery Mobile
  39. * DEPENDENCIES
  40. It's a plugin for the jquery framework, you need to include jquery in your scripts.
  41. From 1.5.x version and on. (you can try with 1.4.2+ also)
  42. * INSTALLATION
  43. Put loading script tag after jquery script tag and loading the zoom image in the same folder of the script:
  44. <script src="jquery.nicescroll.js"></script>
  45. Copy image "zoomico.png" in the same folder of jquery.nicescroll.js.
  46. * HOW TO USE
  47. Recall ALWAYS in (document) ready statement.
  48. 1. Simple mode, it styles document scrollbar:
  49. $(document).ready(
  50. function() {
  51. $("html").niceScroll();
  52. }
  53. );
  54. 2. Instance with object returned:
  55. var nice = false;
  56. $(document).ready(
  57. function() {
  58. nice = $("html").niceScroll();
  59. }
  60. );
  61. 3. Style a DIV and chage cursor color:
  62. $(document).ready(
  63. function() {
  64. $("#thisdiv").niceScroll({cursorcolor:"#00F"});
  65. }
  66. );
  67. 4. DIV with "wrapper", formed by two divs, the first is the vieport, the latter is the content:
  68. $(document).ready(
  69. function() {
  70. $("#viewportdiv").niceScroll("#wrapperdiv",{cursorcolor:"#00F"});
  71. }
  72. );
  73. 5. Get nicescroll object:
  74. var nice = $("#mydiv").getNiceScroll();
  75. 6. Hide scrollbars:
  76. $("#mydiv").getNiceScroll().hide();
  77. * CONFIGURATION PARAMETERS
  78. When you call "niceScroll" you can pass some parameters to custom visual aspects:
  79. . cursorcolor - change cursor color in hex, default is "#000000"
  80. . cursoropacitymin - change opacity very cursor is inactive (scrollabar "hidden" state), range from 1 to 0, default is 0 (hidden)
  81. . cursoropacitymax - change opacity very cursor is active (scrollabar "visible" state), range from 1 to 0, default is 1 (full opacity)
  82. . cursorwidth - cursor width in pixel, default is 5 (you can write "5px" too)
  83. . cursorborder - css definition for cursor border, default is "1px solid #fff"
  84. . cursorborderradius - border radius in pixel for cursor, default is "4px"
  85. . zindex - change z-index for scrollbar div, default value is 9999
  86. . scrollspeed - scrolling speed, default value is 60
  87. . mousescrollstep - scrolling speed with mouse wheel, default value is 40 (pixel)
  88. . touchbehavior - enable cursor-drag scrolling like touch devices in desktop computer, default is false
  89. . hwacceleration - use hardware accelerated scroll when supported, default is true
  90. . boxzoom - enable zoom for box content, default is false
  91. . dblclickzoom - (only when boxzoom=true) zoom activated when double click on box, default is true
  92. . gesturezoom - (only when boxzoom=true and with touch devices) zoom activated when pinch out/in on box, default is true
  93. . grabcursorenabled, display "grab" icon for div with touchbehavior = true, default is true
  94. . autohidemode, how hide the scrollbar works, true=default / "cursor" = only cursor hidden / false = do not hide
  95. . background, change css for rail background, default is ""
  96. . iframeautoresize, autoresize iframe on load event (default:true)
  97. . cursorminheight, set the minimum cursor height in pixel (default:20)
  98. . preservenativescrolling, you can scroll native scrollable areas with mouse, bubbling mouse wheel event (default:true)
  99. . railoffset, you can add offset top/left for rail position (default:false)
  100. . bouncescroll, enable scroll bouncing at the end of content as mobile-like (only hw accell) (default:false)
  101. . spacebarenabled, enable page down scrolling when space bar has pressed (default:true)
  102. . railpadding, set padding for rail bar (default:{top:0,right:0,left:0,bottom:0})
  103. . disableoutline, for chrome browser, disable outline (orange hightlight) when selecting a div with nicescroll (default:true)
  104. * LICENSE
  105. Copyright 2011-12*InuYaksa
  106. Licensed under the MIT License, http://www.opensource.org/licenses/mit-license.php
  107. Images used for zoom icons have derived from OLPC interface, http://laptop.org/8.2.0/manual/Browse_ChangingView.html