├── .gitignore ├── .idea ├── .name ├── misc.xml ├── modules.xml ├── parallaxie.iml └── vcs.xml ├── LICENSE.txt ├── README.md ├── bower.json ├── bower_components └── jquery │ ├── .bower.json │ ├── AUTHORS.txt │ ├── LICENSE.txt │ ├── README.md │ ├── bower.json │ ├── dist │ ├── jquery.js │ ├── jquery.min.js │ ├── jquery.min.map │ ├── jquery.slim.js │ ├── jquery.slim.min.js │ └── jquery.slim.min.map │ ├── sizzle │ ├── LICENSE.txt │ └── dist │ │ ├── sizzle.js │ │ ├── sizzle.min.js │ │ └── sizzle.min.map │ └── src │ ├── .jshintrc │ ├── ajax.js │ ├── ajax │ ├── jsonp.js │ ├── load.js │ ├── parseJSON.js │ ├── parseXML.js │ ├── script.js │ ├── var │ │ ├── location.js │ │ ├── nonce.js │ │ └── rquery.js │ └── xhr.js │ ├── attributes.js │ ├── attributes │ ├── attr.js │ ├── classes.js │ ├── prop.js │ ├── support.js │ └── val.js │ ├── callbacks.js │ ├── core.js │ ├── core │ ├── DOMEval.js │ ├── access.js │ ├── init.js │ ├── parseHTML.js │ ├── ready.js │ ├── support.js │ └── var │ │ └── rsingleTag.js │ ├── css.js │ ├── css │ ├── addGetHookIf.js │ ├── adjustCSS.js │ ├── curCSS.js │ ├── defaultDisplay.js │ ├── hiddenVisibleSelectors.js │ ├── showHide.js │ ├── support.js │ └── var │ │ ├── cssExpand.js │ │ ├── getStyles.js │ │ ├── isHidden.js │ │ ├── rmargin.js │ │ ├── rnumnonpx.js │ │ └── swap.js │ ├── data.js │ ├── data │ ├── Data.js │ ├── accepts.js │ ├── support.js │ └── var │ │ ├── acceptData.js │ │ ├── dataPriv.js │ │ └── dataUser.js │ ├── deferred.js │ ├── deferred │ └── exceptionHook.js │ ├── deprecated.js │ ├── dimensions.js │ ├── effects.js │ ├── effects │ ├── Tween.js │ ├── animatedSelector.js │ └── support.js │ ├── event.js │ ├── event │ ├── ajax.js │ ├── alias.js │ ├── focusin.js │ ├── support.js │ └── trigger.js │ ├── exports │ ├── amd.js │ └── global.js │ ├── intro.js │ ├── jquery.js │ ├── manipulation.js │ ├── manipulation │ ├── _evalUrl.js │ ├── buildFragment.js │ ├── createSafeFragment.js │ ├── getAll.js │ ├── setGlobalEval.js │ ├── support.js │ ├── var │ │ ├── nodeNames.js │ │ ├── rcheckableType.js │ │ ├── rleadingWhitespace.js │ │ ├── rscriptType.js │ │ └── rtagName.js │ └── wrapMap.js │ ├── offset.js │ ├── outro.js │ ├── queue.js │ ├── queue │ └── delay.js │ ├── selector-native.js │ ├── selector-sizzle.js │ ├── selector.js │ ├── serialize.js │ ├── support.js │ ├── traversing.js │ ├── traversing │ ├── findFilter.js │ └── var │ │ ├── dir.js │ │ ├── rneedsContext.js │ │ └── siblings.js │ ├── var │ ├── arr.js │ ├── class2type.js │ ├── concat.js │ ├── deletedIds.js │ ├── document.js │ ├── documentElement.js │ ├── hasOwn.js │ ├── indexOf.js │ ├── pnum.js │ ├── push.js │ ├── rcssNum.js │ ├── rnotwhite.js │ ├── slice.js │ ├── support.js │ └── toString.js │ └── wrap.js ├── example ├── background.jpg ├── blue-bg-02.jpg ├── blue-bg.jpg ├── index.html ├── shoe-01.png ├── shoe-02.png └── triangular-folds-white.jpg └── parallaxie.js /.gitignore: -------------------------------------------------------------------------------- 1 | # IntelliJ project files 2 | .idea 3 | Thumbs.db -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | parallaxie -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/parallaxie.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/.idea/parallaxie.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower.json -------------------------------------------------------------------------------- /bower_components/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/.bower.json -------------------------------------------------------------------------------- /bower_components/jquery/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/AUTHORS.txt -------------------------------------------------------------------------------- /bower_components/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/LICENSE.txt -------------------------------------------------------------------------------- /bower_components/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/README.md -------------------------------------------------------------------------------- /bower_components/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/bower.json -------------------------------------------------------------------------------- /bower_components/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/dist/jquery.js -------------------------------------------------------------------------------- /bower_components/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /bower_components/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /bower_components/jquery/dist/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/dist/jquery.slim.js -------------------------------------------------------------------------------- /bower_components/jquery/dist/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/dist/jquery.slim.min.js -------------------------------------------------------------------------------- /bower_components/jquery/dist/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/dist/jquery.slim.min.map -------------------------------------------------------------------------------- /bower_components/jquery/sizzle/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/sizzle/LICENSE.txt -------------------------------------------------------------------------------- /bower_components/jquery/sizzle/dist/sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/sizzle/dist/sizzle.js -------------------------------------------------------------------------------- /bower_components/jquery/sizzle/dist/sizzle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/sizzle/dist/sizzle.min.js -------------------------------------------------------------------------------- /bower_components/jquery/sizzle/dist/sizzle.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/sizzle/dist/sizzle.min.map -------------------------------------------------------------------------------- /bower_components/jquery/src/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/.jshintrc -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/ajax.js -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/ajax/jsonp.js -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/ajax/load.js -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/parseJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/ajax/parseJSON.js -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/parseXML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/ajax/parseXML.js -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/ajax/script.js -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.location; 3 | } ); 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/ajax/var/nonce.js -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/ajax/var/rquery.js -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/ajax/xhr.js -------------------------------------------------------------------------------- /bower_components/jquery/src/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/attributes.js -------------------------------------------------------------------------------- /bower_components/jquery/src/attributes/attr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/attributes/attr.js -------------------------------------------------------------------------------- /bower_components/jquery/src/attributes/classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/attributes/classes.js -------------------------------------------------------------------------------- /bower_components/jquery/src/attributes/prop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/attributes/prop.js -------------------------------------------------------------------------------- /bower_components/jquery/src/attributes/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/attributes/support.js -------------------------------------------------------------------------------- /bower_components/jquery/src/attributes/val.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/attributes/val.js -------------------------------------------------------------------------------- /bower_components/jquery/src/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/callbacks.js -------------------------------------------------------------------------------- /bower_components/jquery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/core.js -------------------------------------------------------------------------------- /bower_components/jquery/src/core/DOMEval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/core/DOMEval.js -------------------------------------------------------------------------------- /bower_components/jquery/src/core/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/core/access.js -------------------------------------------------------------------------------- /bower_components/jquery/src/core/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/core/init.js -------------------------------------------------------------------------------- /bower_components/jquery/src/core/parseHTML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/core/parseHTML.js -------------------------------------------------------------------------------- /bower_components/jquery/src/core/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/core/ready.js -------------------------------------------------------------------------------- /bower_components/jquery/src/core/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/core/support.js -------------------------------------------------------------------------------- /bower_components/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/core/var/rsingleTag.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/css.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/addGetHookIf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/css/addGetHookIf.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/adjustCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/css/adjustCSS.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/curCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/css/curCSS.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/defaultDisplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/css/defaultDisplay.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/hiddenVisibleSelectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/css/hiddenVisibleSelectors.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/showHide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/css/showHide.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/css/support.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/css/var/cssExpand.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/var/getStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/css/var/getStyles.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/var/isHidden.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/css/var/isHidden.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/css/var/rmargin.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/css/var/rnumnonpx.js -------------------------------------------------------------------------------- /bower_components/jquery/src/css/var/swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/css/var/swap.js -------------------------------------------------------------------------------- /bower_components/jquery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/data.js -------------------------------------------------------------------------------- /bower_components/jquery/src/data/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/data/Data.js -------------------------------------------------------------------------------- /bower_components/jquery/src/data/accepts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/data/accepts.js -------------------------------------------------------------------------------- /bower_components/jquery/src/data/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/data/support.js -------------------------------------------------------------------------------- /bower_components/jquery/src/data/var/acceptData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/data/var/acceptData.js -------------------------------------------------------------------------------- /bower_components/jquery/src/data/var/dataPriv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/data/var/dataPriv.js -------------------------------------------------------------------------------- /bower_components/jquery/src/data/var/dataUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/data/var/dataUser.js -------------------------------------------------------------------------------- /bower_components/jquery/src/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/deferred.js -------------------------------------------------------------------------------- /bower_components/jquery/src/deferred/exceptionHook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/deferred/exceptionHook.js -------------------------------------------------------------------------------- /bower_components/jquery/src/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/deprecated.js -------------------------------------------------------------------------------- /bower_components/jquery/src/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/dimensions.js -------------------------------------------------------------------------------- /bower_components/jquery/src/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/effects.js -------------------------------------------------------------------------------- /bower_components/jquery/src/effects/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/effects/Tween.js -------------------------------------------------------------------------------- /bower_components/jquery/src/effects/animatedSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/effects/animatedSelector.js -------------------------------------------------------------------------------- /bower_components/jquery/src/effects/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/effects/support.js -------------------------------------------------------------------------------- /bower_components/jquery/src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/event.js -------------------------------------------------------------------------------- /bower_components/jquery/src/event/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/event/ajax.js -------------------------------------------------------------------------------- /bower_components/jquery/src/event/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/event/alias.js -------------------------------------------------------------------------------- /bower_components/jquery/src/event/focusin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/event/focusin.js -------------------------------------------------------------------------------- /bower_components/jquery/src/event/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/event/support.js -------------------------------------------------------------------------------- /bower_components/jquery/src/event/trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/event/trigger.js -------------------------------------------------------------------------------- /bower_components/jquery/src/exports/amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/exports/amd.js -------------------------------------------------------------------------------- /bower_components/jquery/src/exports/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/exports/global.js -------------------------------------------------------------------------------- /bower_components/jquery/src/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/intro.js -------------------------------------------------------------------------------- /bower_components/jquery/src/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/jquery.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/manipulation.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/_evalUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/manipulation/_evalUrl.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/buildFragment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/manipulation/buildFragment.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/createSafeFragment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/manipulation/createSafeFragment.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/getAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/manipulation/getAll.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/setGlobalEval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/manipulation/setGlobalEval.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/manipulation/support.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/var/nodeNames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/manipulation/var/nodeNames.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/manipulation/var/rcheckableType.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/var/rleadingWhitespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/manipulation/var/rleadingWhitespace.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/var/rscriptType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/manipulation/var/rscriptType.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/var/rtagName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/manipulation/var/rtagName.js -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/wrapMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/manipulation/wrapMap.js -------------------------------------------------------------------------------- /bower_components/jquery/src/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/offset.js -------------------------------------------------------------------------------- /bower_components/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | return jQuery; 2 | })); 3 | -------------------------------------------------------------------------------- /bower_components/jquery/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/queue.js -------------------------------------------------------------------------------- /bower_components/jquery/src/queue/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/queue/delay.js -------------------------------------------------------------------------------- /bower_components/jquery/src/selector-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/selector-native.js -------------------------------------------------------------------------------- /bower_components/jquery/src/selector-sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/selector-sizzle.js -------------------------------------------------------------------------------- /bower_components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() {} ); 2 | -------------------------------------------------------------------------------- /bower_components/jquery/src/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/serialize.js -------------------------------------------------------------------------------- /bower_components/jquery/src/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/support.js -------------------------------------------------------------------------------- /bower_components/jquery/src/traversing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/traversing.js -------------------------------------------------------------------------------- /bower_components/jquery/src/traversing/findFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/traversing/findFilter.js -------------------------------------------------------------------------------- /bower_components/jquery/src/traversing/var/dir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/traversing/var/dir.js -------------------------------------------------------------------------------- /bower_components/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/traversing/var/rneedsContext.js -------------------------------------------------------------------------------- /bower_components/jquery/src/traversing/var/siblings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/traversing/var/siblings.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // [[Class]] -> type pairs 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/var/concat.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/deletedIds.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/document.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.document; 3 | } ); 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/documentElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/var/documentElement.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/var/hasOwn.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/var/indexOf.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/var/pnum.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/var/push.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/var/rcssNum.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/var/rnotwhite.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/var/slice.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/var/support.js -------------------------------------------------------------------------------- /bower_components/jquery/src/var/toString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/var/toString.js -------------------------------------------------------------------------------- /bower_components/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/bower_components/jquery/src/wrap.js -------------------------------------------------------------------------------- /example/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/example/background.jpg -------------------------------------------------------------------------------- /example/blue-bg-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/example/blue-bg-02.jpg -------------------------------------------------------------------------------- /example/blue-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/example/blue-bg.jpg -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/example/index.html -------------------------------------------------------------------------------- /example/shoe-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/example/shoe-01.png -------------------------------------------------------------------------------- /example/shoe-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/example/shoe-02.png -------------------------------------------------------------------------------- /example/triangular-folds-white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/example/triangular-folds-white.jpg -------------------------------------------------------------------------------- /parallaxie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theultrasoft/Parallaxie/HEAD/parallaxie.js --------------------------------------------------------------------------------