Jump to content
  • 0

Как сделать выполнение скрипта только при разрешении экрана < 992 px


ANDREW-UA
 Share

Question

Добрый день всем ! Я не силен в этом деле ,прошу помощи у вас , как это сделать ? Как сделать выполнение скрипта только при разрешении экрана < 992 px 

 

<script>
    var lastScrollTop = 0;

window.addEventListener("scroll", function(){  
   var st = window.pageYOffset || document.documentElement.scrollTop;  
   if (st > lastScrollTop){
       document.getElementById("floating-menu-mobile").style.bottom = "-100%";
   } else {
      document.getElementById("floating-menu-mobile").style.bottom = "0";
   }
   lastScrollTop = st;
}, false);
</script>
12 часов назад, ANDREW-UA сказал:

Добрый день всем ! Я не силен в этом деле ,прошу помощи у вас , как это сделать ? Как сделать выполнение скрипта только при разрешении экрана < 992 px 

 

<script>
    var lastScrollTop = 0;

window.addEventListener("scroll", function(){  
   var st = window.pageYOffset || document.documentElement.scrollTop;  
   if (st > lastScrollTop){
       document.getElementById("floating-menu-mobile").style.bottom = "-100%";
   } else {
      document.getElementById("floating-menu-mobile").style.bottom = "0";
   }
   lastScrollTop = st;
}, false);
</script>

 

Вот решение ! Сам сделал 

<script>
if(window.innerWidth < 992) {
    var lastScrollTop = 0;

window.addEventListener("scroll", function(){  
   var st = window.pageYOffset || document.documentElement.scrollTop;  
   if (st > lastScrollTop){
       document.getElementById("floating-menu-mobile").style.bottom = "-100%";
   } else {
      document.getElementById("floating-menu-mobile").style.bottom = "0";
   }
   lastScrollTop = st;
}, false);
}
</script>

 

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0
2 часа назад, npofopr сказал:

Только оно скорее всего не сработает, если с большого разрешения сделать меньше. 

Да правильно, если увеличивать и уменьшать изображения методом тягать браузер по ширине, оно не срабатывает , но на сайт заходят с устройств мобильных и десктоп, если так то всё работает как положено для различных версий и экранов < 992 px.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy