You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

angular-fullpage.js

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-fullpage.js

A simple angular directive for fullPage.js

0.2.6
latest
Source
npm
Version published
Weekly downloads
10
100%
Maintainers
1
Weekly downloads
 
Created
Source

fullPage.js Angular Directive

Enhanced by BrowserStack

Code Climate License

A simple fullPage.js directive that allows the use of fullPage.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 - Source

Installation

Install via Download,

Bower

bower install --save angular-fullpage.js

or NPM

npm install --save angular-fullpage.js

====

Make sure to include both this directive and fullPage.js. This package isn't a replacement.

index.html

<!-- Included dependancies:
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.5/angular.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="vendor/fullpage.js/jquery.fullPage.min.js"></script>
-->

<script src="vendor/angular-fullpage.js/angular-fullpage.min.js"></script>

In your angular modules, include the Directive

app.module.js

angular
  .module('app', [
    'fullPage.js'
    ...
  ]);

Add your standard fullPage.js structure, along with the attribute full-page

someView.html

<div full-page>
    <div class="section">Some section</div>
    <div class="section">Some section</div>
    <div class="section">Some section</div>
    <div class="section">Some section</div>
</div>

Options

If you'd like to add some options to the fullpage, just include them in an object in your controller, and add the options attribute to your html.

someView.html

function MainController(){

  var _this = this;

  _this.mainOptions = {
    sectionsColor: ['#1bbc9b', '#4BBFC3', '#7BAABE'],
    navigation: true,
    navigationPosition: 'right',
    scrollingSpeed: 1000
  }

}

someView.html

<div full-page options="vm.someOptions">
    <div class="section">Some section</div>
    <div class="section">Some section</div>
    <div class="section">Some section</div>
</div>

You can even make them dynamic.

Keywords

fullpage

FAQs

Package last updated on 15 Feb 2017

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