├── .babelrc ├── .editorconfig ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── dist ├── vue-video-section.css ├── vue-video-section.esm.js ├── vue-video-section.min.js └── vue-video-section.umd.js ├── docs ├── 1e915e450e9ba5648de4d2c61ba9eab6.ogv ├── 66cea6b7eeaa1a8e82f3051d0f3dfc0c.webm ├── 9181b14b9a4b39eb4aa125720d07e6bc.png ├── f13004eed4251c602bbe15737e8a1ecb.mp4 ├── favicon.png ├── index.html ├── main.1322b013502296af6ce2.css ├── main.612c4c1f16d4611ed049.js └── vendor.6251e82cfcaa9e3d0612.js ├── example ├── App.vue ├── index.html └── main.js ├── package.json ├── src ├── VueVideoSection.vue ├── assets │ ├── images │ │ ├── .gitkeep │ │ ├── favicon.png │ │ ├── panel.png │ │ ├── poster.png │ │ └── social.png │ └── videos │ │ ├── big_buck_bunny.mp4 │ │ ├── big_buck_bunny.ogv │ │ └── big_buck_bunny.webm └── index.js ├── test ├── VueVideoSection.spec.js └── styleMock.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/README.md -------------------------------------------------------------------------------- /dist/vue-video-section.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/dist/vue-video-section.css -------------------------------------------------------------------------------- /dist/vue-video-section.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/dist/vue-video-section.esm.js -------------------------------------------------------------------------------- /dist/vue-video-section.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/dist/vue-video-section.min.js -------------------------------------------------------------------------------- /dist/vue-video-section.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/dist/vue-video-section.umd.js -------------------------------------------------------------------------------- /docs/1e915e450e9ba5648de4d2c61ba9eab6.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/docs/1e915e450e9ba5648de4d2c61ba9eab6.ogv -------------------------------------------------------------------------------- /docs/66cea6b7eeaa1a8e82f3051d0f3dfc0c.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/docs/66cea6b7eeaa1a8e82f3051d0f3dfc0c.webm -------------------------------------------------------------------------------- /docs/9181b14b9a4b39eb4aa125720d07e6bc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/docs/9181b14b9a4b39eb4aa125720d07e6bc.png -------------------------------------------------------------------------------- /docs/f13004eed4251c602bbe15737e8a1ecb.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/docs/f13004eed4251c602bbe15737e8a1ecb.mp4 -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/docs/favicon.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/main.1322b013502296af6ce2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/docs/main.1322b013502296af6ce2.css -------------------------------------------------------------------------------- /docs/main.612c4c1f16d4611ed049.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/docs/main.612c4c1f16d4611ed049.js -------------------------------------------------------------------------------- /docs/vendor.6251e82cfcaa9e3d0612.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/docs/vendor.6251e82cfcaa9e3d0612.js -------------------------------------------------------------------------------- /example/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/example/App.vue -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/example/index.html -------------------------------------------------------------------------------- /example/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/example/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/package.json -------------------------------------------------------------------------------- /src/VueVideoSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/src/VueVideoSection.vue -------------------------------------------------------------------------------- /src/assets/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/src/assets/images/favicon.png -------------------------------------------------------------------------------- /src/assets/images/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/src/assets/images/panel.png -------------------------------------------------------------------------------- /src/assets/images/poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/src/assets/images/poster.png -------------------------------------------------------------------------------- /src/assets/images/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/src/assets/images/social.png -------------------------------------------------------------------------------- /src/assets/videos/big_buck_bunny.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/src/assets/videos/big_buck_bunny.mp4 -------------------------------------------------------------------------------- /src/assets/videos/big_buck_bunny.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/src/assets/videos/big_buck_bunny.ogv -------------------------------------------------------------------------------- /src/assets/videos/big_buck_bunny.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/src/assets/videos/big_buck_bunny.webm -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/src/index.js -------------------------------------------------------------------------------- /test/VueVideoSection.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/test/VueVideoSection.spec.js -------------------------------------------------------------------------------- /test/styleMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/test/styleMock.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndatserakis/vue-video-section/HEAD/webpack.config.js --------------------------------------------------------------------------------