Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

can not re-initialize glider #268

Open
kull102 opened this issue Sep 11, 2024 · 1 comment
Open

can not re-initialize glider #268

kull102 opened this issue Sep 11, 2024 · 1 comment

Comments

@kull102
Copy link

kull102 commented Sep 11, 2024

Hi guys, I'm trying to re-initialize glider when user resize the window but it does not work. Can anyone help me?

const MOBILE_WIDTH = 768;
// const glider_container = document.querySelector("glider_container")
let glider = null;

function initializeGlider() {
    const currentWidth = window.innerWidth;

    if (currentWidth < MOBILE_WIDTH && !glider) {
        glider = new Glider(document.querySelector('.glider-headliners'), {
            slidesToShow: 1,
            draggable: true,
            dots: '.headlinears-dots',
        });
    }


    if (glider && currentWidth >= MOBILE_WIDTH  ) {
        glider?.destroy();

    }

}

document.addEventListener('DOMContentLoaded', function () {
    initializeGlider();
});

window.addEventListener('resize', function () {
    initializeGlider();
});
@NickPiscitelli
Copy link
Owner

NickPiscitelli commented Oct 4, 2024

You need to loop the elements and initialize, like this:

document.querySelectorAll('.glider-headliners').forEach(glider => {
    new Glider(document.querySelector('.glider-headliners'), {
        slidesToShow: 1,
        draggable: true,
        dots: '.headlinears-dots',
    });
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants