#Let’sTechno / #HardcoreMotherfucker Unisex White Hoodie

#Let’sTechno / #HardcoreMotherfucker Unisex White Hoodie

Definitely not the right time to catch a cold, it’s not snowing as ravers would expect to.

The unisex relaxed hoodie sweatshirt

Brand – Stanley/Stella

Brushed Sweatshirt
85% Organic ring-spun combed cotton, 15% Recycled polyester 350 GSM

  • Set-in sleeve
  • Double layered hood in self fabric
  • Flat drawcords in matching body colour with metal tipping
  • Metal eyelets
  • Inside herringbone back neck tape
  • Self fabric half moon at back neck
  • Single needle topstitch at neckline
  • 2×2 rib at sleeve hem and bottom hem
  • Armhole, sleeve hem, and bottom hem with twin needle topstitch
  • Kangaroo pocket at front
Categories: Clothing, HoodiesBrand: Stanley/Stella

Free online returns

Shipping in 2-4 business days

COLOR:
Secured Payments by

Related

You May Also Like

Select options This product has multiple variants. The options may be chosen on the product page
Select options This product has multiple variants. The options may be chosen on the product page
Select options This product has multiple variants. The options may be chosen on the product page
Select options This product has multiple variants. The options may be chosen on the product page

Out of stock

Select options This product has multiple variants. The options may be chosen on the product page
document.addEventListener('DOMContentLoaded', function () {
    const dividerTrigger   = document.querySelector('.mp-divider-trigger');
    const slideAnimTrigger = document.querySelector('.mp-slide-anim-trigger');
    const sliderEl         = document.querySelector('#product-slider');
    const arrows           = document.querySelectorAll('#product-slider .splide__arrow');

    if (!sliderEl) return;

    const AUTOPLAY_INTERVAL = 7000; // same as your Splide autoplay interval

    function triggerClick(el) {
        if (!el) return;
        el.dispatchEvent(
            new MouseEvent('click', {
                bubbles: true,
                cancelable: true,
                view: window,
            })
        );
    }

    function restartDividerTimeline() {
        triggerClick(dividerTrigger);
    }

    function playSlideTransition() {
        triggerClick(slideAnimTrigger);
    }

    let dividerTimer = null;

    function resetTimer() {
        clearInterval(dividerTimer);
        dividerTimer = setInterval(function () {
            // autoplay tick: slider moves to next slide → run both
            restartDividerTimeline();
            playSlideTransition();
        }, AUTOPLAY_INTERVAL);
    }

    // 🔹 Start once shortly after load so Splide is mounted
    setTimeout(function () {
        restartDividerTimeline();
        playSlideTransition();
        resetTimer();
    }, 100); // tweak 100–250ms if needed

    // ============ ARROW CLICKS ============
    arrows.forEach((arrow) => {
        arrow.addEventListener('click', function () {
            restartDividerTimeline();
            playSlideTransition();
            resetTimer();
        });
    });

    // ============ DRAG / SWIPE ============
    const track = sliderEl.querySelector('.splide__track') || sliderEl;
    let dragging = false;

    // User starts interacting with the track
    ['pointerdown', 'touchstart', 'mousedown'].forEach((evt) => {
        track.addEventListener(evt, () => {
            dragging = true;
        });
    });

    // User ends interaction (drag/swipe finished)
    ['pointerup', 'pointercancel', 'touchend', 'mouseup', 'mouseleave'].forEach(
        (evt) => {
            track.addEventListener(evt, () => {
                if (!dragging) return;
                dragging = false;

                // 🔥 Restart both divider + slide animation immediately on drag end
                restartDividerTimeline();
                playSlideTransition();
                resetTimer();
            });
        }
    );
});