Advertisement
clickio

futbolme correct

Aug 12th, 2022 (edited)
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. Please replace this code section:
  2.  
  3. <script type="text/javascript">
  4. let isScroll = false;
  5. window.onscroll = () => isScroll = true;
  6. setInterval(() => {
  7. if ( isScroll ) {
  8. isScroll = false;
  9. document.getElementById('headeradd').style.display = 'none'
  10. document.getElementById('contenedorMenuSuperior').style.cssText = "top: 0px !important"
  11. }
  12. }, 5000);
  13. </script>
  14.  
  15. to this:
  16.  
  17. <script type="text/javascript">
  18. window.addEventListener('wheel', function(evt) {
  19. if(window.scrollY >= 100) {
  20. setTimeout(function(){
  21. document.getElementById('headeradd').style.display = 'none';
  22. document.getElementById('contenedorMenuSuperior').style.cssText = "top: 0px !important";
  23. }, 5000);
  24. }
  25. });
  26. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement