Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. $(window).on('scroll', function(){
  2. (!window.requestAnimationFrame) ? fixGallery() : window.requestAnimationFrame(fixGallery);
  3. });
  4.  
  5.  
  6. function fixGallery() {
  7. var offsetTop = $('.cd-main-content').offset().top,
  8. scrollTop = $(window).scrollTop();
  9. ( scrollTop >= offsetTop ) ? $('.cd-main-content').addClass('is-fixed') : $('.cd-main-content').removeClass('is-fixed');
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement