mind-overflow-website-ghost.../assets/js/arrow-fade.js
Lorenzo Dellacà 3bd2fe5627 End CSS refactoring and organization
CSS refactoring is now complete, and all styles are correctly
organized in main "screen.css" file, with a table of contents.

All supplementary CSS files have been removed, with the
exception of "fonts.css", as explained in previous commit.

This CSS implementation may, however, be considered immature,
and thus could be subject to heavy changes again in the near
future.

Many things are also still missing, such as a responsive
design and support for some custom pages (such as /tags/).

Signed-off-by: Lorenzo Dellacà <lorenzo.dellaca@mind-overflow.net>
2020-08-20 14:05:14 +02:00

12 lines
288 B
JavaScript
Executable File

$(document).ready(function(){
$(window).scroll(function(){
if($(this).scrollTop() >
//$(window).height()*0.3){
100) {
$(".mind-global-header_arrow-down").css({"opacity" : "0"});
} else {
$(".mind-global-header_arrow-down").css({"opacity" : "0.4"});
}
});
});