Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bertoni/parallax
https://github.com/bertoni/parallax
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/bertoni/parallax
- Owner: bertoni
- Created: 2016-02-05T15:43:02.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-05T18:06:45.000Z (almost 9 years ago)
- Last Synced: 2023-05-04T21:15:06.272Z (over 1 year ago)
- Language: JavaScript
- Size: 82 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
PARALLAX JS
===========This project has objective provide a library that allows the exhibition of web pages as "slide", in the parallax style
Rapidly and easily, following a tutorial very simple, will be possible turn your HTML page into "slides parallax"
HTML structure, in your body, use:
Obs: Each slide must stay into divs with the parallax class
First Slide!
Second Slide!
Third Slide!
Fourth Slide!
Fifth Slide!
Add the CSS and the JS of the parallax:
Now is just begin the parallax:
window.onload = function(){
var parallax = new Parallax();
parallax.init({
wrapper: 'your-id-wrapper-here'
});
}
The parallax don't depends of any external library as Jquery or similars.
[The demo page is in http://bertoni.github.io/parallax/](http://bertoni.github.io/parallax/)