├── .DS_Store ├── .gitignore ├── README.markdown ├── bower.json ├── images ├── dot.png ├── firstBG.jpg ├── secondBG.jpg ├── thirdBG.jpg └── trainers.png ├── index.html ├── scripts ├── jquery.localscroll-1.2.7-min.js ├── jquery.parallax-1.1.3.js └── jquery.scrollTo-1.4.2-min.js └── style.css /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/jQuery-Parallax/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/jQuery-Parallax/HEAD/.gitignore -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/jQuery-Parallax/HEAD/README.markdown -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/jQuery-Parallax/HEAD/bower.json -------------------------------------------------------------------------------- /images/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/jQuery-Parallax/HEAD/images/dot.png -------------------------------------------------------------------------------- /images/firstBG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/jQuery-Parallax/HEAD/images/firstBG.jpg -------------------------------------------------------------------------------- /images/secondBG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/jQuery-Parallax/HEAD/images/secondBG.jpg -------------------------------------------------------------------------------- /images/thirdBG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/jQuery-Parallax/HEAD/images/thirdBG.jpg -------------------------------------------------------------------------------- /images/trainers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/jQuery-Parallax/HEAD/images/trainers.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/jQuery-Parallax/HEAD/index.html -------------------------------------------------------------------------------- /scripts/jquery.localscroll-1.2.7-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/jQuery-Parallax/HEAD/scripts/jquery.localscroll-1.2.7-min.js -------------------------------------------------------------------------------- /scripts/jquery.parallax-1.1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/jQuery-Parallax/HEAD/scripts/jquery.parallax-1.1.3.js -------------------------------------------------------------------------------- /scripts/jquery.scrollTo-1.4.2-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/jQuery-Parallax/HEAD/scripts/jquery.scrollTo-1.4.2-min.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IanLunn/jQuery-Parallax/HEAD/style.css --------------------------------------------------------------------------------