itchief / ui-components

web components for creating user interface
MIT License
211 stars 352 forks source link

Reverse autoplay #17

Closed natalyanacondus closed 1 year ago

natalyanacondus commented 1 year ago

Hello there! Really appreciate your job - its really cool! But maybe u can answer is it possible to make reverse autoplay in slider?

itchief commented 1 year ago

Hi! Added this feature to the slider.

Via data attributes:

<div class="itc-slider" data-slider="itc-slider" data-loop="true" data-direction="prev">...</div>

Via JavaScript:

ItcSlider.getOrCreateInstance('.itc-slider', {
  autorun: true,
  interval: 5000,
  loop: true,
  direction: 'prev', // default 'next'
});
natalyanacondus commented 1 year ago

Thank u sooo much !!!