Skip to content

Instantly share code, notes, and snippets.

@tov-jukov
Last active November 9, 2017 16:52
Show Gist options
  • Select an option

  • Save tov-jukov/4c277be173abad778e75119bf99c4a9f to your computer and use it in GitHub Desktop.

Select an option

Save tov-jukov/4c277be173abad778e75119bf99c4a9f to your computer and use it in GitHub Desktop.
VueSlider[код для html] Слайдер 3d карусель с использованием vue.js
<div id="vueapp">
<carousel-3d :controls-visible="true" :controls-prev-html="'&#10092;'" :controls-next-html="'&#10093;'"
: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