Content is currently perma-hidden on UHD displays.
Can be tested on lower res displays by zooming out (~30%) and refreshing.
|
if ( $(window).width() > 1023) { |
|
|
|
tiles = $("p, h1, h2, h3, .column-one, .column-two, .column-three, .start-page .content .text, hr, .grid li, .contact .content .form, .contact .content .contact-text ").fadeTo(0, 0); |
|
|
|
$(window).scroll(function(d,h) { |
|
tiles.each(function(i) { |
|
a = $(this).offset().top + $(this).height(); |
|
b = $(window).scrollTop() + $(window).height(); |
|
if (a < b) $(this).fadeTo(1000,1); |
|
}); |
|
}); |
|
|
|
} |
|
else { |
|
} |
Content is currently perma-hidden on UHD displays.
Can be tested on lower res displays by zooming out (~30%) and refreshing.
classTranscribe/public/javascripts/libraries/homeScript.js
Lines 81 to 95 in f03bb58