├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── dist ├── parallax-effect.js └── parallax-effect.mjs ├── examples ├── deepview.html ├── pixi.html ├── res │ ├── deepview │ │ ├── fire │ │ │ ├── mdi_rig_space_mesh_000.ply │ │ │ ├── mdi_rig_space_mesh_001.ply │ │ │ ├── mdi_rig_space_mesh_002.ply │ │ │ ├── mdi_rig_space_mesh_003.ply │ │ │ ├── mdi_rig_space_mesh_004.ply │ │ │ ├── mdi_rig_space_mesh_005.ply │ │ │ ├── mdi_rig_space_mesh_006.ply │ │ │ ├── mdi_rig_space_mesh_007.ply │ │ │ ├── mdi_rig_space_mesh_008.ply │ │ │ ├── mdi_rig_space_mesh_009.ply │ │ │ ├── mdi_rig_space_mesh_010.ply │ │ │ ├── mdi_rig_space_mesh_011.ply │ │ │ ├── mdi_rig_space_mesh_012.ply │ │ │ ├── mdi_rig_space_mesh_013.ply │ │ │ ├── mdi_rig_space_mesh_014.ply │ │ │ ├── mdi_rig_space_mesh_015.ply │ │ │ └── texture_atlas_rgba.png │ │ ├── paint │ │ │ ├── mdi_rig_space_mesh_000.ply │ │ │ ├── mdi_rig_space_mesh_001.ply │ │ │ ├── mdi_rig_space_mesh_002.ply │ │ │ ├── mdi_rig_space_mesh_003.ply │ │ │ ├── mdi_rig_space_mesh_004.ply │ │ │ ├── mdi_rig_space_mesh_005.ply │ │ │ ├── mdi_rig_space_mesh_006.ply │ │ │ ├── mdi_rig_space_mesh_007.ply │ │ │ ├── mdi_rig_space_mesh_008.ply │ │ │ ├── mdi_rig_space_mesh_009.ply │ │ │ ├── mdi_rig_space_mesh_010.ply │ │ │ ├── mdi_rig_space_mesh_011.ply │ │ │ ├── mdi_rig_space_mesh_012.ply │ │ │ ├── mdi_rig_space_mesh_013.ply │ │ │ ├── mdi_rig_space_mesh_014.ply │ │ │ ├── mdi_rig_space_mesh_015.ply │ │ │ └── texture_atlas_rgba.png │ │ ├── room │ │ │ ├── mdi_rig_space_mesh_000.ply │ │ │ ├── mdi_rig_space_mesh_001.ply │ │ │ ├── mdi_rig_space_mesh_002.ply │ │ │ ├── mdi_rig_space_mesh_003.ply │ │ │ ├── mdi_rig_space_mesh_004.ply │ │ │ ├── mdi_rig_space_mesh_005.ply │ │ │ ├── mdi_rig_space_mesh_006.ply │ │ │ ├── mdi_rig_space_mesh_007.ply │ │ │ ├── mdi_rig_space_mesh_008.ply │ │ │ ├── mdi_rig_space_mesh_009.ply │ │ │ ├── mdi_rig_space_mesh_010.ply │ │ │ ├── mdi_rig_space_mesh_011.ply │ │ │ ├── mdi_rig_space_mesh_012.ply │ │ │ ├── mdi_rig_space_mesh_013.ply │ │ │ ├── mdi_rig_space_mesh_014.ply │ │ │ ├── mdi_rig_space_mesh_015.ply │ │ │ └── texture_atlas_rgba.png │ │ └── style.css │ ├── pixi │ │ ├── shizuku_ske.json │ │ ├── style.css │ │ ├── texture_00.png │ │ ├── texture_01.png │ │ ├── texture_02.png │ │ └── texture_03.png │ └── three │ │ ├── head.glb │ │ └── matcap.jpg └── threejs.html ├── index.html ├── package.json ├── rollup.config.js └── src └── parallax-effect.mjs /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .gitignore 3 | .renovaterc 4 | .travis.yml 5 | LICENSE 6 | package-lock.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/README.md -------------------------------------------------------------------------------- /dist/parallax-effect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/dist/parallax-effect.js -------------------------------------------------------------------------------- /dist/parallax-effect.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/dist/parallax-effect.mjs -------------------------------------------------------------------------------- /examples/deepview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/deepview.html -------------------------------------------------------------------------------- /examples/pixi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/pixi.html -------------------------------------------------------------------------------- /examples/res/deepview/fire/mdi_rig_space_mesh_000.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/fire/mdi_rig_space_mesh_000.ply -------------------------------------------------------------------------------- /examples/res/deepview/fire/mdi_rig_space_mesh_001.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/fire/mdi_rig_space_mesh_001.ply -------------------------------------------------------------------------------- /examples/res/deepview/fire/mdi_rig_space_mesh_002.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/fire/mdi_rig_space_mesh_002.ply -------------------------------------------------------------------------------- /examples/res/deepview/fire/mdi_rig_space_mesh_003.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/fire/mdi_rig_space_mesh_003.ply -------------------------------------------------------------------------------- /examples/res/deepview/fire/mdi_rig_space_mesh_004.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/fire/mdi_rig_space_mesh_004.ply -------------------------------------------------------------------------------- /examples/res/deepview/fire/mdi_rig_space_mesh_005.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/fire/mdi_rig_space_mesh_005.ply -------------------------------------------------------------------------------- /examples/res/deepview/fire/mdi_rig_space_mesh_006.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/fire/mdi_rig_space_mesh_006.ply -------------------------------------------------------------------------------- /examples/res/deepview/fire/mdi_rig_space_mesh_007.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/fire/mdi_rig_space_mesh_007.ply -------------------------------------------------------------------------------- /examples/res/deepview/fire/mdi_rig_space_mesh_008.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/fire/mdi_rig_space_mesh_008.ply -------------------------------------------------------------------------------- /examples/res/deepview/fire/mdi_rig_space_mesh_009.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/fire/mdi_rig_space_mesh_009.ply -------------------------------------------------------------------------------- /examples/res/deepview/fire/mdi_rig_space_mesh_010.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/fire/mdi_rig_space_mesh_010.ply -------------------------------------------------------------------------------- /examples/res/deepview/fire/mdi_rig_space_mesh_011.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/fire/mdi_rig_space_mesh_011.ply -------------------------------------------------------------------------------- /examples/res/deepview/fire/mdi_rig_space_mesh_012.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/fire/mdi_rig_space_mesh_012.ply -------------------------------------------------------------------------------- /examples/res/deepview/fire/mdi_rig_space_mesh_013.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/fire/mdi_rig_space_mesh_013.ply -------------------------------------------------------------------------------- /examples/res/deepview/fire/mdi_rig_space_mesh_014.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/fire/mdi_rig_space_mesh_014.ply -------------------------------------------------------------------------------- /examples/res/deepview/fire/mdi_rig_space_mesh_015.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/fire/mdi_rig_space_mesh_015.ply -------------------------------------------------------------------------------- /examples/res/deepview/fire/texture_atlas_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/fire/texture_atlas_rgba.png -------------------------------------------------------------------------------- /examples/res/deepview/paint/mdi_rig_space_mesh_000.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/paint/mdi_rig_space_mesh_000.ply -------------------------------------------------------------------------------- /examples/res/deepview/paint/mdi_rig_space_mesh_001.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/paint/mdi_rig_space_mesh_001.ply -------------------------------------------------------------------------------- /examples/res/deepview/paint/mdi_rig_space_mesh_002.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/paint/mdi_rig_space_mesh_002.ply -------------------------------------------------------------------------------- /examples/res/deepview/paint/mdi_rig_space_mesh_003.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/paint/mdi_rig_space_mesh_003.ply -------------------------------------------------------------------------------- /examples/res/deepview/paint/mdi_rig_space_mesh_004.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/paint/mdi_rig_space_mesh_004.ply -------------------------------------------------------------------------------- /examples/res/deepview/paint/mdi_rig_space_mesh_005.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/paint/mdi_rig_space_mesh_005.ply -------------------------------------------------------------------------------- /examples/res/deepview/paint/mdi_rig_space_mesh_006.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/paint/mdi_rig_space_mesh_006.ply -------------------------------------------------------------------------------- /examples/res/deepview/paint/mdi_rig_space_mesh_007.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/paint/mdi_rig_space_mesh_007.ply -------------------------------------------------------------------------------- /examples/res/deepview/paint/mdi_rig_space_mesh_008.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/paint/mdi_rig_space_mesh_008.ply -------------------------------------------------------------------------------- /examples/res/deepview/paint/mdi_rig_space_mesh_009.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/paint/mdi_rig_space_mesh_009.ply -------------------------------------------------------------------------------- /examples/res/deepview/paint/mdi_rig_space_mesh_010.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/paint/mdi_rig_space_mesh_010.ply -------------------------------------------------------------------------------- /examples/res/deepview/paint/mdi_rig_space_mesh_011.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/paint/mdi_rig_space_mesh_011.ply -------------------------------------------------------------------------------- /examples/res/deepview/paint/mdi_rig_space_mesh_012.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/paint/mdi_rig_space_mesh_012.ply -------------------------------------------------------------------------------- /examples/res/deepview/paint/mdi_rig_space_mesh_013.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/paint/mdi_rig_space_mesh_013.ply -------------------------------------------------------------------------------- /examples/res/deepview/paint/mdi_rig_space_mesh_014.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/paint/mdi_rig_space_mesh_014.ply -------------------------------------------------------------------------------- /examples/res/deepview/paint/mdi_rig_space_mesh_015.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/paint/mdi_rig_space_mesh_015.ply -------------------------------------------------------------------------------- /examples/res/deepview/paint/texture_atlas_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/paint/texture_atlas_rgba.png -------------------------------------------------------------------------------- /examples/res/deepview/room/mdi_rig_space_mesh_000.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/room/mdi_rig_space_mesh_000.ply -------------------------------------------------------------------------------- /examples/res/deepview/room/mdi_rig_space_mesh_001.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/room/mdi_rig_space_mesh_001.ply -------------------------------------------------------------------------------- /examples/res/deepview/room/mdi_rig_space_mesh_002.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/room/mdi_rig_space_mesh_002.ply -------------------------------------------------------------------------------- /examples/res/deepview/room/mdi_rig_space_mesh_003.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/room/mdi_rig_space_mesh_003.ply -------------------------------------------------------------------------------- /examples/res/deepview/room/mdi_rig_space_mesh_004.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/room/mdi_rig_space_mesh_004.ply -------------------------------------------------------------------------------- /examples/res/deepview/room/mdi_rig_space_mesh_005.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/room/mdi_rig_space_mesh_005.ply -------------------------------------------------------------------------------- /examples/res/deepview/room/mdi_rig_space_mesh_006.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/room/mdi_rig_space_mesh_006.ply -------------------------------------------------------------------------------- /examples/res/deepview/room/mdi_rig_space_mesh_007.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/room/mdi_rig_space_mesh_007.ply -------------------------------------------------------------------------------- /examples/res/deepview/room/mdi_rig_space_mesh_008.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/room/mdi_rig_space_mesh_008.ply -------------------------------------------------------------------------------- /examples/res/deepview/room/mdi_rig_space_mesh_009.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/room/mdi_rig_space_mesh_009.ply -------------------------------------------------------------------------------- /examples/res/deepview/room/mdi_rig_space_mesh_010.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/room/mdi_rig_space_mesh_010.ply -------------------------------------------------------------------------------- /examples/res/deepview/room/mdi_rig_space_mesh_011.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/room/mdi_rig_space_mesh_011.ply -------------------------------------------------------------------------------- /examples/res/deepview/room/mdi_rig_space_mesh_012.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/room/mdi_rig_space_mesh_012.ply -------------------------------------------------------------------------------- /examples/res/deepview/room/mdi_rig_space_mesh_013.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/room/mdi_rig_space_mesh_013.ply -------------------------------------------------------------------------------- /examples/res/deepview/room/mdi_rig_space_mesh_014.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/room/mdi_rig_space_mesh_014.ply -------------------------------------------------------------------------------- /examples/res/deepview/room/mdi_rig_space_mesh_015.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/room/mdi_rig_space_mesh_015.ply -------------------------------------------------------------------------------- /examples/res/deepview/room/texture_atlas_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/room/texture_atlas_rgba.png -------------------------------------------------------------------------------- /examples/res/deepview/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/deepview/style.css -------------------------------------------------------------------------------- /examples/res/pixi/shizuku_ske.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/pixi/shizuku_ske.json -------------------------------------------------------------------------------- /examples/res/pixi/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/pixi/style.css -------------------------------------------------------------------------------- /examples/res/pixi/texture_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/pixi/texture_00.png -------------------------------------------------------------------------------- /examples/res/pixi/texture_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/pixi/texture_01.png -------------------------------------------------------------------------------- /examples/res/pixi/texture_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/pixi/texture_02.png -------------------------------------------------------------------------------- /examples/res/pixi/texture_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/pixi/texture_03.png -------------------------------------------------------------------------------- /examples/res/three/head.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/three/head.glb -------------------------------------------------------------------------------- /examples/res/three/matcap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/res/three/matcap.jpg -------------------------------------------------------------------------------- /examples/threejs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/examples/threejs.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/parallax-effect.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munrocket/parallax-effect/HEAD/src/parallax-effect.mjs --------------------------------------------------------------------------------