Last active
November 9, 2017 16:52
-
-
Save tov-jukov/4c277be173abad778e75119bf99c4a9f to your computer and use it in GitHub Desktop.
VueSlider[код для html] Слайдер 3d карусель с использованием vue.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div id="vueapp"> | |
| <carousel-3d :controls-visible="true" :controls-prev-html="'❬'" :controls-next-html="'❭'" | |
| :controls-width="30" :controls-height="60" :count="slides.length"> | |
| <slide v-for="(slide, i) in slides" :index="i"> | |
| <img v-bind:src="slide.url"> | |
| </slide> | |
| </carousel-3d> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment