Custom scrollbars with native scrolling
npm install gemini-scrollbar
!bower-image
!license-image
Custom overlay-scrollbars with native scrolling mechanism for web applications (if needed).
There is a __React__ wrapper too — react-gemini-scrollbar.
###### Problem Description
Nowadays, some OS’s provides “overlay-scrollbars” natively. Those scrollbars look nice and work well (mostly mobile browsers and OSX opt-in). The problem came when you have to customize the remaining ‘ugly’ scrollbars out there. e.g: “having a sidebar with a dark background + native-__non-floating__-scrollbars” ...hum, ugly. Even when this problem can be merely visual, for me is a way of enhancing the user experience.
###### Constraints
- Fallbacks to use the native scrollbars when the OS/browser supports “overlay-scrollbars”.
- Mimics the scrollbar behaviour when replaced with the custom ones (click, drag...).
- IE9+ support.
###### Solution Proposal
Check the scrollbar size. If the scrollbar size is zero (which means the scrollbars are already “over the content”) then we do nothing. Otherwise we simply “hide” native scrollbar and show custom in its place.
https://noeldelgado.github.io/gemini-scrollbar/
NPM
``sh`
npm i gemini-scrollbar --save
Bower
`sh`
bower install gemini-scrollbar --save
JS
`js
var GeminiScrollbar = require('gemini-scrollbar')
var myScrollbar = new GeminiScrollbar({
element: document.querySelector('.my-scrollbar')
}).create();
`
LESS
`less`
@import (inline) "
CSS
`css`
@import url(
Or, you can add the relevant files in your document.
`html`
name | type | default | description
|:--- | :--- | :--- | :---
element * | HTMLElement | null | The element to apply scrollbarsfalse
autoshow | Boolean | | Show scrollbars upon hoveringtrue
createElements | Boolean | | Create and append the require HTMLElements at runtime.false
forceGemini | Boolean | | Force Gemini scrollbars even if native overlay-scrollbars are available. Useful for development.null
onResize | Function | | Hook by which clients can be notified of resize events.(px)
minThumbSize | Number | 20 | Sets the minimum size of the thumbs.
\* required
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.
name | description
|:-- | :--
getViewElement | Returns the scrollable element
You can change the styles of the scrollbars using CSS. e.g:
`css
/ 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;
}
`
- native overlay-scrollbar: We check the scrollbar size using this approach by David Walsh. If the scrollbar size is zero (which means the scrollbars are “over the content”) then we do nothing but add the gm-prevented class selector to the element, which contains the non-standard -webkit-overflow-scrolling: touch; declaration for web devices to use momentum-based scrolling. No event binding, element creation... nothing, in this case, we leave the OS/browser do its job. Why? you already have nice looking scrollbars for free.-webkit-
- ::-webkit-scrollbar: If you plan to use gemini-scrollbar on your application I highly recommend you removing any Webkit scrollbar styles you may have, why? using the prefixed pseudo-elements will cause Webkit turning off its built-in scrollbar rendering, interfering with our scrollbar-size-check. You can read a bit more about this issue on this commit.create
- create method: The custom scrollbars will not render until you call the method on the instance. i.e: myScrollbar.create();height
- required height: To avoid unexpected results, it is recommended that you specify the property with a value to the element you applying the custom scrollbars (or to its parent).body
- body tag: If you want to apply custom scrollbars to , make sure to declare a height value either to the :root pseudo-class or to the html element. e.g:
`css`
html {
height: 100%;
/ or /
height: 100vh;
overflow: hidden;
}
createElements
- createElements option: The option specify wheater or not gemini-scrollbar should create and append the require HTMLElements at runtime. Its default value is true. Passing this option as false will assume that you to have added the required markup with the specific CSS class selectors on them for it to work. i.e:
`html
This way you can be sure the library will not touch/change your nodes structure. You can read more about the reason of this option on this commit.
- react-gemini-scrollbar - React wrapper