Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <script>
  2. var timer=null;
  3. $(window).scroll(function(){
  4. $('.index-scroll-wrap').css("display", "none");
  5. console.log('working');
  6. if(timer !== null) {
  7. clearTimeout(timer);
  8.  
  9. }
  10. timer=setTimeout(function(){
  11. $('.index-scroll-wrap').css('display','block');
  12. },50);
  13.  
  14.  
  15. });
  16. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement