Add files via upload

This commit is contained in:
TuturP33
2023-03-19 02:13:17 +01:00
committed by GitHub
parent 0d3d0ee389
commit dcc948f56d
11 changed files with 463 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
$(function() {
$('.div_btn').hide();
});
$(window).scroll(function(){
posScroll = $(document).scrollTop();
if(posScroll >=id_div_big_title.clientHeight)
$('.div_btn').show();
else
$('.div_btn').hide();
});