Manda-Shop
const images = ["https://cdn02.plentymarkets.com/fzraxqjvapo5/frontend/s3/files/banner/mbraced/Banner-J_A1-sw.jpg","https://cdn02.plentymarkets.com/fzraxqjvapo5/frontend/s3/files/banner/mbraced/Banner_Ma_dels2-sw.jpg","https://cdn02.plentymarkets.com/fzraxqjvapo5/frontend/s3/files/banner/mbraced/Banner-J_A2-sw.jpg"]; let currentIndex = 0; const currentImg = document.querySelector('.mp-hero img.current'); const nextImg = document.querySelector('.mp-hero img.next'); function transitionToNextImage() { const nextIndex = (currentIndex + 1) % images.length; nextImg.src = images[nextIndex]; // Reset active class in case it's still present nextImg.classList.remove('active'); void nextImg.offsetWidth; // Starte Animation nextImg.classList.add('active'); // Nach der Animation: setTimeout(() => { // 1. Zeige neues Bild dauerhaft in .current currentImg.src = images[nextIndex]; // 2. Verstecke next wieder, OHNE sichtbaren Reset nextImg.classList.remove('active'); nextImg.src = ""; // oder dummy transparent image // 3. Index aktualisieren currentIndex = nextIndex; }, 2000); } setInterval(transitionToNextImage, 5000);

to embrace something is to welcome it with open
arms, hold, hug, accept compelely


MBRACED PIECES

Zu allen Produkten
function checkScroll(){ var pageTop = $(document).scrollTop(); var pageBottom = pageTop + $(window).height(); var tags = $(".scrollanim"); var tags2 = $(".scrollanimim"); for (var i = 0; i < tags2.length; i++) { var tag = tags2[i]; //console.log("tag: "+$(tag)[0].getBoundingClientRect().top, "pagetop: "+$(window).height()) if (($(tag)[0].getBoundingClientRect().top) < $(window).height()-200) { $(tag).addClass("visible"); } else { $(tag).removeClass("visible"); } } } $(document).on("scroll", function() { checkScroll() }); setTimeout(function(){ checkScroll() }, 500)