Skip to content
Full Panel Website jQuery plugin based on https://github.com/alvarotrigo/fullPage.js/
JavaScript CSS
Find file
Failed to load latest commit information.
.idea
dist Implememnts full support for touch events.
examples
src Implememnts full support for touch events.
test adds dist, cssmin
.bowerrc initial commit
.editorconfig
.gitignore
.jshintignore
.jshintrc
.travis.yml
CONTRIBUTING.md
Gruntfile.js adds easing, bower fixes for submission to registry
README.md fixes readme
bower.json
fullpanel.jquery.json
package.json adds dist, cssmin

README.md

Full Panel Website jQuery plugin based on fullPage.js and the:q

jQuery plugin for fullPanel website based inspired by fullPage.js

Getting Started

Download the production version or the development version.

Install with Bower:

bower install fullpanel.js

In your web page:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/jquery-ui.min.js"></script>
<script src="dist/fullpaneljs.min.js"></script>
<script>
jQuery(function($) {
  $("#fullpanel").fullpanel({
    //options
  }); 
});
</script>

<div id="fullpanel">
    <div data-anchor="panel1" class="panel active">Panel 1</div>
    <div data-anchor="panel2" class="panel">Panel 2</div>
    <div data-anchor="panel3" class="panel">Panel 3</div>
    <div data-anchor="panel4" class="panel">Panel 4</div>
    <div data-anchor="panel5" class="panel">Panel 5</div>
</div>

Documentation

(Coming soon)

Examples

See the /examples directory

Release History

(Nothing yet)

Something went wrong with that request. Please try again.