├── .DS_Store ├── .eslintrc.cjs ├── .gitattributes ├── .gitignore ├── .netlify └── state.json ├── LICENSE ├── README.md ├── dist ├── assets │ ├── index-2I63wj--.js │ └── index-nQcawPOF.css ├── img │ ├── 14.jpg │ ├── 15.jpg │ ├── 16.jpg │ ├── 17.jpg │ ├── 18.jpg │ ├── 19.jpg │ ├── 20.jpg │ ├── 21.jpg │ ├── 22.jpg │ ├── 23.jpg │ ├── 24.jpg │ ├── 25.jpg │ ├── 26.jpg │ ├── 27.jpg │ ├── 28.jpg │ ├── 29.jpg │ ├── 30.jpg │ ├── 31.jpg │ ├── 32.jpg │ ├── 33.jpg │ ├── 34.jpg │ ├── 35.jpg │ ├── 36.jpg │ ├── 37.jpg │ ├── 38.jpg │ ├── 39.jpg │ ├── 40.jpg │ ├── 41.jpg │ ├── 42.jpg │ ├── 43.jpg │ ├── 44.jpg │ ├── 45.jpg │ ├── 46.jpg │ ├── 47.jpg │ ├── 48.jpg │ ├── 49.jpg │ ├── 50.jpg │ ├── 51.jpg │ ├── 52.jpg │ ├── 53.jpg │ └── 54.jpg ├── test.jpg ├── test1.jpg └── vite.svg ├── favicon.ico ├── index.html ├── package.json ├── public ├── .DS_Store ├── favicon.ico └── img │ ├── .DS_Store │ ├── 1.jpg │ ├── 10.jpg │ ├── 11.jpg │ ├── 12.jpg │ ├── 13.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── 8.jpg │ └── 9.jpg ├── src ├── .DS_Store ├── App.css ├── App.jsx ├── Scene.jsx ├── assets │ └── react.svg ├── components │ └── EmergingImage.jsx ├── index.css ├── main.jsx └── stuff │ ├── EmergeMaterial.js │ └── useScreenSize.js └── vite.config.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/.DS_Store -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/.gitignore -------------------------------------------------------------------------------- /.netlify/state.json: -------------------------------------------------------------------------------- 1 | { 2 | "siteId": "963aa9fc-c0c1-46cc-8592-b976f5f7eb49" 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/README.md -------------------------------------------------------------------------------- /dist/assets/index-2I63wj--.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/assets/index-2I63wj--.js -------------------------------------------------------------------------------- /dist/assets/index-nQcawPOF.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/assets/index-nQcawPOF.css -------------------------------------------------------------------------------- /dist/img/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/14.jpg -------------------------------------------------------------------------------- /dist/img/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/15.jpg -------------------------------------------------------------------------------- /dist/img/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/16.jpg -------------------------------------------------------------------------------- /dist/img/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/17.jpg -------------------------------------------------------------------------------- /dist/img/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/18.jpg -------------------------------------------------------------------------------- /dist/img/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/19.jpg -------------------------------------------------------------------------------- /dist/img/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/20.jpg -------------------------------------------------------------------------------- /dist/img/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/21.jpg -------------------------------------------------------------------------------- /dist/img/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/22.jpg -------------------------------------------------------------------------------- /dist/img/23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/23.jpg -------------------------------------------------------------------------------- /dist/img/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/24.jpg -------------------------------------------------------------------------------- /dist/img/25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/25.jpg -------------------------------------------------------------------------------- /dist/img/26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/26.jpg -------------------------------------------------------------------------------- /dist/img/27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/27.jpg -------------------------------------------------------------------------------- /dist/img/28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/28.jpg -------------------------------------------------------------------------------- /dist/img/29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/29.jpg -------------------------------------------------------------------------------- /dist/img/30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/30.jpg -------------------------------------------------------------------------------- /dist/img/31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/31.jpg -------------------------------------------------------------------------------- /dist/img/32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/32.jpg -------------------------------------------------------------------------------- /dist/img/33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/33.jpg -------------------------------------------------------------------------------- /dist/img/34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/34.jpg -------------------------------------------------------------------------------- /dist/img/35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/35.jpg -------------------------------------------------------------------------------- /dist/img/36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/36.jpg -------------------------------------------------------------------------------- /dist/img/37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/37.jpg -------------------------------------------------------------------------------- /dist/img/38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/38.jpg -------------------------------------------------------------------------------- /dist/img/39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/39.jpg -------------------------------------------------------------------------------- /dist/img/40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/40.jpg -------------------------------------------------------------------------------- /dist/img/41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/41.jpg -------------------------------------------------------------------------------- /dist/img/42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/42.jpg -------------------------------------------------------------------------------- /dist/img/43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/43.jpg -------------------------------------------------------------------------------- /dist/img/44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/44.jpg -------------------------------------------------------------------------------- /dist/img/45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/45.jpg -------------------------------------------------------------------------------- /dist/img/46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/46.jpg -------------------------------------------------------------------------------- /dist/img/47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/47.jpg -------------------------------------------------------------------------------- /dist/img/48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/48.jpg -------------------------------------------------------------------------------- /dist/img/49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/49.jpg -------------------------------------------------------------------------------- /dist/img/50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/50.jpg -------------------------------------------------------------------------------- /dist/img/51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/51.jpg -------------------------------------------------------------------------------- /dist/img/52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/52.jpg -------------------------------------------------------------------------------- /dist/img/53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/53.jpg -------------------------------------------------------------------------------- /dist/img/54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/img/54.jpg -------------------------------------------------------------------------------- /dist/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/test.jpg -------------------------------------------------------------------------------- /dist/test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/test1.jpg -------------------------------------------------------------------------------- /dist/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/dist/vite.svg -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/package.json -------------------------------------------------------------------------------- /public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/public/.DS_Store -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/public/img/.DS_Store -------------------------------------------------------------------------------- /public/img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/public/img/1.jpg -------------------------------------------------------------------------------- /public/img/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/public/img/10.jpg -------------------------------------------------------------------------------- /public/img/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/public/img/11.jpg -------------------------------------------------------------------------------- /public/img/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/public/img/12.jpg -------------------------------------------------------------------------------- /public/img/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/public/img/13.jpg -------------------------------------------------------------------------------- /public/img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/public/img/2.jpg -------------------------------------------------------------------------------- /public/img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/public/img/3.jpg -------------------------------------------------------------------------------- /public/img/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/public/img/4.jpg -------------------------------------------------------------------------------- /public/img/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/public/img/5.jpg -------------------------------------------------------------------------------- /public/img/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/public/img/6.jpg -------------------------------------------------------------------------------- /public/img/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/public/img/7.jpg -------------------------------------------------------------------------------- /public/img/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/public/img/8.jpg -------------------------------------------------------------------------------- /public/img/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/public/img/9.jpg -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/Scene.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/src/Scene.jsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/components/EmergingImage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/src/components/EmergingImage.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/stuff/EmergeMaterial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/src/stuff/EmergeMaterial.js -------------------------------------------------------------------------------- /src/stuff/useScreenSize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/src/stuff/useScreenSize.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/CodropsEmergingImages/HEAD/vite.config.js --------------------------------------------------------------------------------