Package Exports
- gemini-scrollbar
- gemini-scrollbar/gemini-scrollbar.css
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gemini-scrollbar) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
gemini-scrollbar
Custom scrollbars with native scrolling.
current version: 1.0.2
Dependencies
None
Installation
NPM
npm i gemini-scrollbar --save
Bower
bower install gemini-scrollbar --save
Usage
JS
var GeminiScrollbar = require('gemini-scrollbar')
var myScrollbar = new GeminiScrollbar({
element: document.querySelector('.my-scrollbar')
}).create();
LESS
@import (css) "<path-to-gemini-scrollbar>/gemini-scrollbar.css";
CSS
@import url(<path-to-gemini-scrollbar>/gemini-scrollbar.css);
Or, you can add the relevant files in your document.
<link href="<path-to-gemini-scrollbar>/gemini-scrollbar.css" rel="stylesheet">
<script src="<path-to-gemini-scrollbar>/index.js"></script>
Options
name | type | default | description |
---|
- element | HTMLElement |
null
| The element to apply scrollbars autoshow | Boolean |false
| Show scrollbars upon hovering createElements | Boolean |true
| Create and append the require HTMLElements at runtime.
* required
Methods
name | description |
---|---|
create | Bind the events, create the required elements and display the scrollbars. |
update | Recalculate the viewbox and scrollbar dimensions. |
destroy | Unbind the events and remove the custom scrollbar elements. |
Customization
You can change the styles of the scrollbars using CSS. Ex:
/* override gemini-scrollbar default styles */
/* vertical scrollbar track */
.gm-scrollbar.-vertical {
background-color: #f0f0f0
}
/* horizontal scrollbar track */
.gm-scrollbar.-horizontal {
background-color: transparent;
}
/* scrollbar thumb */
.gm-scrollbar .thumb {
background-color: rebeccapurple;
}
.gm-scrollbar .thumb:hover {
background-color: fuchsia;
}
Notes
iOS, OS X: We check the scrollbar's width before doing anything else using this approach by David Walsh. If the scrollbar width is equal to zero then we do nothing but add the
gm-prevented
class selector to the element, which adds the-webkit-overflow-scrolling: touch;
declaration to it and alsodisplay: none;
for the scrollbars. No event binding, element creation... nothing, in this case we leave the OS do its job. Why? you already have nice looking scrollbars for free.create method: The custom scrollbars will not render until you call the
create
method on the instance. Ex:myScrollbar.create();
required height: To avoid unexpected results, it is recommended that you specify the
height
property with a value to the element you applying the custom scrollbars.body tag: If you want to apply custom scrollbars to
body
, make sure to declare aheight
value either to the:root
pseudo-class or to thehtml
element. Ex:html { height: 100%; /* or */ height: 100vh; }
createElements option: The
createElements
option specify wheater or not gemini-scrollbar should create and append the require HTMLElements at runtime. Its default value istrue
. Passing this option asfalse
will assume that you to have added the required markup with the specific CSS class selectors on them for it to work. Ex:<-- (createElements: false) example markup --> <div class="something-scrollable"> <div class="gm-scrollbar -vertical"> <div class="thumb"></div> </div> <div class="gm-scrollbar -horizontal"> <div class="thumb"></div> </div> <div class="gm-scroll-view"> All your content goes here. </div> </div>
This way you can be sure the library will not touch/modify your nodes structure. You can read more about the reason of this option on this commit.
License
MIT © Noel Delgado