Advertisement
min_m3

click/ scroll function

Nov 4th, 2019
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     (function ($) {
  2.         $(document).ready(function () {
  3.  
  4.             let header = $('.cf_bal-header');
  5.  
  6.             // Check for first timers
  7.             if (!sessionStorage.returnVisitor) {
  8.  
  9.                 // No flag, this is the first visit.
  10.                 // Set a flag so that next time we know they have been here before.
  11.                 sessionStorage.returnVisitor = 'true';
  12.  
  13.                 // Handle Hero image click.
  14.                 $('.cf_news_link').click(function () {
  15.                     header.slideUp(600, function () {
  16.                             $('body').removeClass('cf_bal-locked');
  17.                     });
  18.                 });
  19.              
  20.                 // Handle scrolling (this is our scroll jacker)
  21.                $(window).on('scroll', function () {
  22.                         ($(header).slideUp(600, function () {
  23.                                 $('body').removeClass('cf_bal-locked');
  24.                         }))
  25.                    
  26.                 });
  27.  
  28.  
  29.             } else {
  30.  
  31.                 // Not our first time, hide header.
  32.                 header.hide();
  33.                 $('body').removeClass('cf_bal-locked');
  34.             }
  35.  
  36.         });
  37.     })(jQuery);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement