GithubHelp home page GithubHelp logo

angular-nanoscroller's Introduction

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="nanoscroller.css"/>
<script src="jquery.nanoscroller.js" type="text/javascript"></script>
<script src="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:

  • template - Template of the scroller. Uses ng-transclude for directive transclusion
  • bottomMargin - Available number of pixels from the bottom, in which it is considered that scroller is in bottom. Default is '40'

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

Bitdeli Badge

angular-nanoscroller's People

Contributors

bitdeli-chef avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.