feat: initialize IoT Standards Lab website project with MAM skills & onboarding guide
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
let mySwiper;
|
||||
let delay = 5000;
|
||||
|
||||
function autoNext(){
|
||||
mySwiper.slideNext();
|
||||
setTimeout(autoNext, delay);
|
||||
}
|
||||
|
||||
$(function(){
|
||||
|
||||
|
||||
mySwiper = new Swiper ('.swiper-container', {
|
||||
loop: true,
|
||||
pagination: '.swiper-pagination',
|
||||
paginationClickable: true,
|
||||
nextButton: '.swiper-button-next',
|
||||
prevButton: '.swiper-button-prev',
|
||||
|
||||
});
|
||||
|
||||
setTimeout(autoNext, delay);
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user