Guest User

Untitled

a guest
May 29th, 2014
314
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. $(window).scroll(function(){
  2.  
  3. //hide video to not mess up parallax section
  4. $('#featured .mejs-mediaelement, #featured .iframe-embed').each(function(){
  5.  
  6. if( $(this).parents('.container').css('opacity') <= 0){
  7. $(this).css('visibility','hidden').hide();
  8. } else {
  9. $(this).css('visibility','visible').show();
  10. }
  11. });
  12.  
  13. if(!$('body').hasClass('mobile')){
  14.  
  15. controlsAndInfoPos();
  16. $('body:not(.mobile) .orbit-wrapper #featured .slide:not(:transparent) article').css({'top': ((- $scrollTop / 5)+logoHeight+headerPadding2+headerResizeOffExtra+extraHeight-extraDef+secondaryHeader) + 'px' });
  17.  
  18. }
  19. });
Advertisement
Add Comment
Please, Sign In to add comment