maxaon / angular-nanoscroller

Wrapper for nanoScrollerJS
MIT License
54 stars 39 forks source link

Angular nanoScroller

Wrapper for nanoScrollerJS with AngularJS lifecycle integration. Demo plunker

Installation

To use it include scrollable.js above your app. Also yiu mus include nanoScrollerJS files.

<link rel="stylesheet" href="https://github.com/maxaon/angular-nanoscroller/blob/master/nanoscroller.css"/>
<script src="https://github.com/maxaon/angular-nanoscroller/raw/master/jquery.nanoscroller.js" type="text/javascript"></script>
<script src="https://github.com/maxaon/angular-nanoscroller/raw/master/scrollable.js" type="text/javascript"></script>

Also you can use bower: bower install angular-nanoscroller

Next, make sure to add sun.scrollable to your Angular app/module requirements:

var module = angular.module('app', ['sun.scrollable']);

Usage

Scroll can be added as element:

<div class="some-container">
  <scrollable>
    ... Some content ...
  </scrollable>
</div>

Or as attribute:

<div class="some-container" scrollable>
  ... Some content ...
</div>

To use custom CSS classes, over root template tag, use element syntax. Parameters of the nanoScroller can be supplied as the value of the attribute scrollable, or as scrollable element attributes.

<div class="some-container">
  <scrollable class="greenScrollbar" always-visible="true" slider-max-height="200">
    ... Some content ...
  </scrollable>
</div>
OR
<div class="some-container" scrollable="{alwaysVisible='true'}">
  ... Some content ...
</div>

Additional attributes

Using attribute static will disable automatic scrollbar reconfiguration when height of content is changed.

Attributes watch and watch-collection will force nanoScroller updates only when objects are changed. To watch multiple objects separate it names throw ; or ,.

Configuration

To configure scrollable change constant scrollableConfig.

Available parameters:

To set default parameters of the nanoScroller modify constant nanoScrollerDefaults. All parameters will be passed to nanoScroller during configuration stage.

Bitdeli Badge