Organize scripts under subdirectories

This commit is contained in:
Lorenzo Dellacà
2021-01-03 11:38:55 +01:00
parent 1890876929
commit 3adf2fcde4
11 changed files with 9 additions and 9 deletions

11
assets/js/scripts/arrow-fade.js Executable file
View File

@@ -0,0 +1,11 @@
$(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"});
}
});
});