Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hellsan631/angular-pagepiling.js
An angular directive for pagePiling.js
https://github.com/hellsan631/angular-pagepiling.js
Last synced: 24 days ago
JSON representation
An angular directive for pagePiling.js
- Host: GitHub
- URL: https://github.com/hellsan631/angular-pagepiling.js
- Owner: hellsan631
- Created: 2015-10-22T22:08:54.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2019-07-20T03:31:37.000Z (over 5 years ago)
- Last Synced: 2024-10-09T16:18:26.353Z (about 1 month ago)
- Language: CSS
- Size: 7.7 MB
- Stars: 9
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[pagePiling.js](https://github.com/alvarotrigo/pagePiling.js) Angular Directive
====## Enhanced by [BrowserStack](http://browserstack.com/)
[![Code Climate](https://codeclimate.com/github/hellsan631/angular-pagepiling.js/badges/gpa.svg)](https://codeclimate.com/github/hellsan631/angular-pagepiling.js)
[![License](http://img.shields.io/badge/License-MIT-blue.svg)](http://opensource.org/licenses/MIT)### Beta 0.1.0
A simple [pagePiling.js](https://github.com/alvarotrigo/pagePiling.js) directive that allows
the use of pagePiling.js within an angular app. There are several issues when using the the vanilla jquery
version with an angular application that uses an internal router for displaying pages, and this repo
aims to solve them.[Example](http://hellsan631.github.io/angular-pagepiling.js/) - [Source](https://github.com/hellsan631/angular-pagepiling.js/tree/gh-pages)
### Installation
Install via __Download__,
__Bower__
```bash
bower install --save angular-pagepiling.js
```or __NPM__
```bash
npm install --save angular-pagepiling.js
```====
Make sure to include both this directive and pagePiling.js. This package isn't a replacement.
_index.html_
```html```
In your angular modules, include the Directive
_app.module.js_
```js
angular
.module('app', [
'pagePiling.js'
...
]);
```Add your standard [pagePiling.js structure](https://github.com/alvarotrigo/pagePiling.js/#required-html-structure),
along with the attribute full-page_someView.html_
```html
Some section
Some section
Some section
Some section
```### Options
If you'd like to add some options to the pagePiling, just include them in an object in your controller, and add the options attribute to your html.
_someView.html_
```js
function MainController(){var _this = this;
_this.mainOptions = {
sectionsColor: ['#1bbc9b', '#4BBFC3', '#7BAABE'],
navigation: true,
navigationPosition: 'right'
scrollingSpeed: 1000
}}
```_someView.html_
```html
Some section
Some section
Some section
```[You can even make them dynamic.](http://hellsan631.github.io/angular-paegpiling.js/#/dynamic)