Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

baron

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

baron

A small, fast and crossbrowser custom scrollbar with native system scroll mechanic.

  • 1.2.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
7.2K
decreased by-12.3%
Maintainers
1
Weekly downloads
 
Created
Source

Build Status

You cannot change the world, but you can change a scrollbar!

Baron demo

Baron — a small, fast and crossbrowser custom scrollbar with native system scroll mechanic.

Demo

API

Features

  • Doesn't replace native system scroll mechanic.
  • Customizable scrollbar design with full CSS support.
  • No strong dependencies on jQuery.
  • Plugin system (fixable headers, sticky footer, autotests and more)
  • Can be inited on hidden blocks
  • Vertical, horizontal and bidirectional scroll
  • Infinite scroll

Baron just hides the system scrollbar, without removing it. This guarantees scrolling will work on any system.

Browsers support

Baron uses two old CSS 2.1 technologies: 1) overflow: scroll 2) overflow: hidden.

Chrome logoFirefox logoInternet Explorer logoOpera logoSafari logoAndroid browser logo
1+ ✔1+ ✔6+ ✔9+ ✔5+ ✔4+ ✔

overflow: scroll not supported by Opera mini and old versions of Android browser (2-). That means, you cannot make scrollable html-elements for them anyway.

! Also, Firefox for Mac OS X, in default non-persistant scrollbar mode is not supported.

1.0 migration

If you have any problems, just set cssGuru option to true.

Simple usage

If you want only to hide system scrollbar:

  • Include either the development or minified version of baron.js:
<script src="baron.js"></script>
  • Make some HTML:
<div class="scroller">
    Your scrollable content here
</div>
  • And CSS
.scroller::-webkit-scrollbar { /* For Mac OS X styled scrollbars */
    width: 0;
}
  • Initialize baron:
$('.scroller').baron();

Advanced usage

<div class="scroller">
    Your scrollable content here
    <div class="scroller__track"><!-- Track is optional -->
        <div class="scroller__bar"></div>
    </div>
</div>
.scroller {
    overflow-y: scroll;
    -ms-overflow-style: none; /* better feel in ie10+ in some rare cases */
    /* -webkit-overflow-scrolling: touch; *//* uncomment to accelerate scrolling on iOS */
}
.scroller::-webkit-scrollbar { /* For Mac OS X styled scrollbars */
    width: 0;
}
.scroller__track {
    display: none; /* Invisible by default */
    position: absolute;
    right: 4px;
    top: 10px;
    bottom: 4px;
    width: 10px;
    background: rgba(0, 0, 0, .1);
}
.baron > .scroller__track {
    display: block; /* Visible when scrolling is possible */
}
.scroller__bar { /* The bar. You should define width, right position and background */
    position: absolute;    
    z-index: 1;
    right: 0;
    width: 10px;
    background: #999;
}

You can specify some parameters on baron initialization:

$('.scroller').baron(params);

// or
var scroll = baron(params);

Chaining

Horizontal and bidirectional scroll

Plugins

License

MIT.

Keywords

FAQs

Package last updated on 14 Dec 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc