├── .gitignore ├── LICENSE ├── README.md ├── css └── style.css ├── favicon.ico ├── img ├── bg.jpg ├── bg2.jpg ├── bg3.jpg ├── bg4.jpg ├── bg5.jpg ├── bg6.jpg └── bg7.jpg ├── index.html ├── index2.html ├── index3.html ├── index4.html ├── index5.html ├── js └── app.js ├── package.json ├── shaders_circle ├── fragment.glsl └── vertex.glsl └── videos ├── 1.mp4 ├── 2.mp4 ├── 3.mp4 ├── 4.mp4 ├── 5.mp4 ├── 6.mp4 ├── 7.mp4 └── averyimportantvideo.mp4 /.gitignore: -------------------------------------------------------------------------------- 1 | .cache/ 2 | node_modules/ 3 | dist/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/videoTransitions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/videoTransitions/HEAD/README.md -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/videoTransitions/HEAD/css/style.css -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/videoTransitions/HEAD/favicon.ico -------------------------------------------------------------------------------- /img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/videoTransitions/HEAD/img/bg.jpg -------------------------------------------------------------------------------- /img/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/videoTransitions/HEAD/img/bg2.jpg -------------------------------------------------------------------------------- /img/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/videoTransitions/HEAD/img/bg3.jpg -------------------------------------------------------------------------------- /img/bg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/videoTransitions/HEAD/img/bg4.jpg -------------------------------------------------------------------------------- /img/bg5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/videoTransitions/HEAD/img/bg5.jpg -------------------------------------------------------------------------------- /img/bg6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/videoTransitions/HEAD/img/bg6.jpg -------------------------------------------------------------------------------- /img/bg7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/videoTransitions/HEAD/img/bg7.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/videoTransitions/HEAD/index.html -------------------------------------------------------------------------------- /index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/videoTransitions/HEAD/index2.html -------------------------------------------------------------------------------- /index3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/videoTransitions/HEAD/index3.html -------------------------------------------------------------------------------- /index4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/videoTransitions/HEAD/index4.html -------------------------------------------------------------------------------- /index5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/videoTransitions/HEAD/index5.html -------------------------------------------------------------------------------- /js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/videoTransitions/HEAD/js/app.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/videoTransitions/HEAD/package.json -------------------------------------------------------------------------------- /shaders_circle/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/videoTransitions/HEAD/shaders_circle/fragment.glsl -------------------------------------------------------------------------------- /shaders_circle/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/videoTransitions/HEAD/shaders_circle/vertex.glsl -------------------------------------------------------------------------------- /videos/1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/videoTransitions/HEAD/videos/1.mp4 -------------------------------------------------------------------------------- /videos/2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/videoTransitions/HEAD/videos/2.mp4 -------------------------------------------------------------------------------- /videos/3.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/videoTransitions/HEAD/videos/3.mp4 -------------------------------------------------------------------------------- /videos/4.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/videoTransitions/HEAD/videos/4.mp4 -------------------------------------------------------------------------------- /videos/5.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/videoTransitions/HEAD/videos/5.mp4 -------------------------------------------------------------------------------- /videos/6.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/videoTransitions/HEAD/videos/6.mp4 -------------------------------------------------------------------------------- /videos/7.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/videoTransitions/HEAD/videos/7.mp4 -------------------------------------------------------------------------------- /videos/averyimportantvideo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akella/videoTransitions/HEAD/videos/averyimportantvideo.mp4 --------------------------------------------------------------------------------