├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .vscode ├── readme-extensions-used.txt └── settings.json ├── Changelog.md ├── LICENSE ├── dist ├── css │ ├── swiffy-slider.css │ ├── swiffy-slider.min.css │ └── swiffy-slider.min.css.map └── js │ ├── swiffy-slider-extensions.js │ ├── swiffy-slider-extensions.min.js │ ├── swiffy-slider-extensions.min.js.map │ ├── swiffy-slider.esm.js │ ├── swiffy-slider.esm.min.js │ ├── swiffy-slider.esm.min.js.map │ ├── swiffy-slider.js │ ├── swiffy-slider.min.js │ └── swiffy-slider.min.js.map ├── docs ├── CNAME ├── assets │ ├── css │ │ ├── swiffy-slider.min.css │ │ └── swiffy-slider.min.css.map │ ├── img │ │ ├── brandlogos │ │ │ ├── DWLogoColor_sm.svg │ │ │ ├── angular-icon-1.svg │ │ │ ├── bootstrap-5.svg │ │ │ ├── css-3.svg │ │ │ ├── eslint-1.svg │ │ │ ├── github-2.svg │ │ │ ├── github-icon.svg │ │ │ ├── grunt-1.svg │ │ │ ├── html-1.svg │ │ │ ├── javascript-1.svg │ │ │ ├── meteor-5.svg │ │ │ ├── next-js.svg │ │ │ ├── nodejs-1.svg │ │ │ ├── nuxt-2.svg │ │ │ ├── prettier-2.svg │ │ │ ├── react-2.svg │ │ │ ├── star-wars-4.svg │ │ │ ├── svelte-wordmark-1.svg │ │ │ ├── vue-9.svg │ │ │ └── webpack-icon.svg │ │ ├── movies │ │ │ ├── cinema.webp │ │ │ ├── movie1.webp │ │ │ ├── movie2.webp │ │ │ ├── movie3.webp │ │ │ ├── movie4.webp │ │ │ ├── movie5.webp │ │ │ ├── movie6.webp │ │ │ ├── movie7.webp │ │ │ ├── movie8.webp │ │ │ └── movie9.webp │ │ ├── photos │ │ │ ├── img1.webp │ │ │ ├── img2.webp │ │ │ ├── img3.webp │ │ │ ├── img4.webp │ │ │ ├── img5.webp │ │ │ ├── img6.webp │ │ │ ├── img7.webp │ │ │ ├── img8.webp │ │ │ └── img9.webp │ │ ├── shoes │ │ │ ├── shoe1.webp │ │ │ ├── shoe2.webp │ │ │ ├── shoe3.webp │ │ │ ├── shoe4.webp │ │ │ ├── shoe5.webp │ │ │ └── shoe6.webp │ │ └── swiffysliderlogo │ │ │ ├── GithubSocial.png │ │ │ ├── SwiffyIcon.png │ │ │ ├── SwiffySliderLogo1.png │ │ │ ├── SwiffySliderLogo1.svg │ │ │ ├── SwiffySliderLogo2.png │ │ │ ├── SwiffySliderLogoRedOnWhite.svg │ │ │ └── SwiffySliderLogoWhiteOnRed.svg │ └── js │ │ ├── swiffy-slider-extensions.min.js │ │ ├── swiffy-slider-extensions.min.js.map │ │ ├── swiffy-slider.esm.min.js │ │ ├── swiffy-slider.esm.min.js.map │ │ ├── swiffy-slider.min.js │ │ └── swiffy-slider.min.js.map ├── concept.html ├── configuration │ └── index.html ├── docs │ ├── index.html │ ├── slider-animation │ │ └── index.html │ ├── slider-indicators │ │ └── index.html │ ├── slider-navigation │ │ └── index.html │ ├── slider-options │ │ └── index.html │ └── slider-sizes │ │ └── index.html ├── examples │ └── index.html └── index.html ├── package.json ├── readme.md └── src ├── swiffy-slider-extensions.js ├── swiffy-slider.css ├── swiffy-slider.esm.js └── swiffy-slider.js /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.vscode/readme-extensions-used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/.vscode/readme-extensions-used.txt -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/Changelog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/LICENSE -------------------------------------------------------------------------------- /dist/css/swiffy-slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/dist/css/swiffy-slider.css -------------------------------------------------------------------------------- /dist/css/swiffy-slider.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/dist/css/swiffy-slider.min.css -------------------------------------------------------------------------------- /dist/css/swiffy-slider.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/dist/css/swiffy-slider.min.css.map -------------------------------------------------------------------------------- /dist/js/swiffy-slider-extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/dist/js/swiffy-slider-extensions.js -------------------------------------------------------------------------------- /dist/js/swiffy-slider-extensions.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/dist/js/swiffy-slider-extensions.min.js -------------------------------------------------------------------------------- /dist/js/swiffy-slider-extensions.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/dist/js/swiffy-slider-extensions.min.js.map -------------------------------------------------------------------------------- /dist/js/swiffy-slider.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/dist/js/swiffy-slider.esm.js -------------------------------------------------------------------------------- /dist/js/swiffy-slider.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/dist/js/swiffy-slider.esm.min.js -------------------------------------------------------------------------------- /dist/js/swiffy-slider.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/dist/js/swiffy-slider.esm.min.js.map -------------------------------------------------------------------------------- /dist/js/swiffy-slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/dist/js/swiffy-slider.js -------------------------------------------------------------------------------- /dist/js/swiffy-slider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/dist/js/swiffy-slider.min.js -------------------------------------------------------------------------------- /dist/js/swiffy-slider.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/dist/js/swiffy-slider.min.js.map -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | swiffyslider.com -------------------------------------------------------------------------------- /docs/assets/css/swiffy-slider.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/css/swiffy-slider.min.css -------------------------------------------------------------------------------- /docs/assets/css/swiffy-slider.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/css/swiffy-slider.min.css.map -------------------------------------------------------------------------------- /docs/assets/img/brandlogos/DWLogoColor_sm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/brandlogos/DWLogoColor_sm.svg -------------------------------------------------------------------------------- /docs/assets/img/brandlogos/angular-icon-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/brandlogos/angular-icon-1.svg -------------------------------------------------------------------------------- /docs/assets/img/brandlogos/bootstrap-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/brandlogos/bootstrap-5.svg -------------------------------------------------------------------------------- /docs/assets/img/brandlogos/css-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/brandlogos/css-3.svg -------------------------------------------------------------------------------- /docs/assets/img/brandlogos/eslint-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/brandlogos/eslint-1.svg -------------------------------------------------------------------------------- /docs/assets/img/brandlogos/github-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/brandlogos/github-2.svg -------------------------------------------------------------------------------- /docs/assets/img/brandlogos/github-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/brandlogos/github-icon.svg -------------------------------------------------------------------------------- /docs/assets/img/brandlogos/grunt-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/brandlogos/grunt-1.svg -------------------------------------------------------------------------------- /docs/assets/img/brandlogos/html-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/brandlogos/html-1.svg -------------------------------------------------------------------------------- /docs/assets/img/brandlogos/javascript-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/brandlogos/javascript-1.svg -------------------------------------------------------------------------------- /docs/assets/img/brandlogos/meteor-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/brandlogos/meteor-5.svg -------------------------------------------------------------------------------- /docs/assets/img/brandlogos/next-js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/brandlogos/next-js.svg -------------------------------------------------------------------------------- /docs/assets/img/brandlogos/nodejs-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/brandlogos/nodejs-1.svg -------------------------------------------------------------------------------- /docs/assets/img/brandlogos/nuxt-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/brandlogos/nuxt-2.svg -------------------------------------------------------------------------------- /docs/assets/img/brandlogos/prettier-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/brandlogos/prettier-2.svg -------------------------------------------------------------------------------- /docs/assets/img/brandlogos/react-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/brandlogos/react-2.svg -------------------------------------------------------------------------------- /docs/assets/img/brandlogos/star-wars-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/brandlogos/star-wars-4.svg -------------------------------------------------------------------------------- /docs/assets/img/brandlogos/svelte-wordmark-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/brandlogos/svelte-wordmark-1.svg -------------------------------------------------------------------------------- /docs/assets/img/brandlogos/vue-9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/brandlogos/vue-9.svg -------------------------------------------------------------------------------- /docs/assets/img/brandlogos/webpack-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/brandlogos/webpack-icon.svg -------------------------------------------------------------------------------- /docs/assets/img/movies/cinema.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/movies/cinema.webp -------------------------------------------------------------------------------- /docs/assets/img/movies/movie1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/movies/movie1.webp -------------------------------------------------------------------------------- /docs/assets/img/movies/movie2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/movies/movie2.webp -------------------------------------------------------------------------------- /docs/assets/img/movies/movie3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/movies/movie3.webp -------------------------------------------------------------------------------- /docs/assets/img/movies/movie4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/movies/movie4.webp -------------------------------------------------------------------------------- /docs/assets/img/movies/movie5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/movies/movie5.webp -------------------------------------------------------------------------------- /docs/assets/img/movies/movie6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/movies/movie6.webp -------------------------------------------------------------------------------- /docs/assets/img/movies/movie7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/movies/movie7.webp -------------------------------------------------------------------------------- /docs/assets/img/movies/movie8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/movies/movie8.webp -------------------------------------------------------------------------------- /docs/assets/img/movies/movie9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/movies/movie9.webp -------------------------------------------------------------------------------- /docs/assets/img/photos/img1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/photos/img1.webp -------------------------------------------------------------------------------- /docs/assets/img/photos/img2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/photos/img2.webp -------------------------------------------------------------------------------- /docs/assets/img/photos/img3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/photos/img3.webp -------------------------------------------------------------------------------- /docs/assets/img/photos/img4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/photos/img4.webp -------------------------------------------------------------------------------- /docs/assets/img/photos/img5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/photos/img5.webp -------------------------------------------------------------------------------- /docs/assets/img/photos/img6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/photos/img6.webp -------------------------------------------------------------------------------- /docs/assets/img/photos/img7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/photos/img7.webp -------------------------------------------------------------------------------- /docs/assets/img/photos/img8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/photos/img8.webp -------------------------------------------------------------------------------- /docs/assets/img/photos/img9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/photos/img9.webp -------------------------------------------------------------------------------- /docs/assets/img/shoes/shoe1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/shoes/shoe1.webp -------------------------------------------------------------------------------- /docs/assets/img/shoes/shoe2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/shoes/shoe2.webp -------------------------------------------------------------------------------- /docs/assets/img/shoes/shoe3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/shoes/shoe3.webp -------------------------------------------------------------------------------- /docs/assets/img/shoes/shoe4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/shoes/shoe4.webp -------------------------------------------------------------------------------- /docs/assets/img/shoes/shoe5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/shoes/shoe5.webp -------------------------------------------------------------------------------- /docs/assets/img/shoes/shoe6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/shoes/shoe6.webp -------------------------------------------------------------------------------- /docs/assets/img/swiffysliderlogo/GithubSocial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/swiffysliderlogo/GithubSocial.png -------------------------------------------------------------------------------- /docs/assets/img/swiffysliderlogo/SwiffyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/swiffysliderlogo/SwiffyIcon.png -------------------------------------------------------------------------------- /docs/assets/img/swiffysliderlogo/SwiffySliderLogo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/swiffysliderlogo/SwiffySliderLogo1.png -------------------------------------------------------------------------------- /docs/assets/img/swiffysliderlogo/SwiffySliderLogo1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/swiffysliderlogo/SwiffySliderLogo1.svg -------------------------------------------------------------------------------- /docs/assets/img/swiffysliderlogo/SwiffySliderLogo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/swiffysliderlogo/SwiffySliderLogo2.png -------------------------------------------------------------------------------- /docs/assets/img/swiffysliderlogo/SwiffySliderLogoRedOnWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/swiffysliderlogo/SwiffySliderLogoRedOnWhite.svg -------------------------------------------------------------------------------- /docs/assets/img/swiffysliderlogo/SwiffySliderLogoWhiteOnRed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/img/swiffysliderlogo/SwiffySliderLogoWhiteOnRed.svg -------------------------------------------------------------------------------- /docs/assets/js/swiffy-slider-extensions.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/js/swiffy-slider-extensions.min.js -------------------------------------------------------------------------------- /docs/assets/js/swiffy-slider-extensions.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/js/swiffy-slider-extensions.min.js.map -------------------------------------------------------------------------------- /docs/assets/js/swiffy-slider.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/js/swiffy-slider.esm.min.js -------------------------------------------------------------------------------- /docs/assets/js/swiffy-slider.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/js/swiffy-slider.esm.min.js.map -------------------------------------------------------------------------------- /docs/assets/js/swiffy-slider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/js/swiffy-slider.min.js -------------------------------------------------------------------------------- /docs/assets/js/swiffy-slider.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/assets/js/swiffy-slider.min.js.map -------------------------------------------------------------------------------- /docs/concept.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/concept.html -------------------------------------------------------------------------------- /docs/configuration/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/configuration/index.html -------------------------------------------------------------------------------- /docs/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/docs/index.html -------------------------------------------------------------------------------- /docs/docs/slider-animation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/docs/slider-animation/index.html -------------------------------------------------------------------------------- /docs/docs/slider-indicators/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/docs/slider-indicators/index.html -------------------------------------------------------------------------------- /docs/docs/slider-navigation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/docs/slider-navigation/index.html -------------------------------------------------------------------------------- /docs/docs/slider-options/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/docs/slider-options/index.html -------------------------------------------------------------------------------- /docs/docs/slider-sizes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/docs/slider-sizes/index.html -------------------------------------------------------------------------------- /docs/examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/examples/index.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/docs/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/readme.md -------------------------------------------------------------------------------- /src/swiffy-slider-extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/src/swiffy-slider-extensions.js -------------------------------------------------------------------------------- /src/swiffy-slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/src/swiffy-slider.css -------------------------------------------------------------------------------- /src/swiffy-slider.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/src/swiffy-slider.esm.js -------------------------------------------------------------------------------- /src/swiffy-slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dynamicweb/swiffy-slider/HEAD/src/swiffy-slider.js --------------------------------------------------------------------------------