El navegador js prohíbe ctrl + rueda del mouse para hacer zoom hacia arriba y hacia abajo

El navegador js prohíbe ctrl + rueda del mouse acercar y bajar

        window.addEventListener('mousewheel', function(event){
            if (event.ctrlKey === true || event.metaKey) {
                event.preventDefault();
            }
        },{ passive: false});

        //firefox
        window.addEventListener('DOMMouseScroll', function(event){
            if (event.ctrlKey === true || event.metaKey) {
                event.preventDefault();
            }
        },{ passive: false});

 

Supongo que te gusta

Origin blog.csdn.net/qq_40015157/article/details/113624393
Recomendado
Clasificación