feat: initialize IoT Standards Lab website project with MAM skills & onboarding guide

This commit is contained in:
2026-07-29 23:43:59 +09:00
commit f3f53c1318
123 changed files with 19987 additions and 0 deletions
+23
View File
@@ -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);
});