
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
angular-fullpage.js
Advanced tools
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.
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>
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>
FAQs
A simple angular directive for fullPage.js
The npm package angular-fullpage.js receives a total of 10 weekly downloads. As such, angular-fullpage.js popularity was classified as not popular.
We found that angular-fullpage.js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.