You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be great if there's something like auto slide which basically changes the slides after user-defined intervals. We could use the following props:
autoplay: Boolean
autoplayDelay: Number
Thanks!
The text was updated successfully, but these errors were encountered:
you can quite easily achieve this by binding the selectIndex property to a variable that is then manipulated using a setInterval method. The method can be triggered a variety of ways.
in methods:
animateMetho(){
setInterval(() => {
if(this.animatepage == 3){
this.animatepage = 0 . // resets the slide to the beginning
}
else {
this.animatepage++
}
}, 2000);
},
It would be great if there's something like auto slide which basically changes the slides after user-defined intervals. We could use the following props:
Thanks!
The text was updated successfully, but these errors were encountered: