11 lines
277 B
JavaScript
11 lines
277 B
JavaScript
window.onscroll = function()
|
|
{
|
|
let floatingButton = document.getElementById('index-my-floating-btn');
|
|
if(pageYOffset < 1000)
|
|
{
|
|
floatingButton.className = "my-floating-btn";
|
|
}else
|
|
{
|
|
floatingButton.className ="my-floating-btn active";
|
|
}
|
|
}; |