-1
I have 2 buttons I put on the menu, and when the scroll appears 1 and add the other because the menu changes color (I’m sending the images for better view).
So far so good. You’re doing it the way I want. However, when reloading the page, it shows the two buttons and the reveal and hide function only work when the scroll. I wanted to run it right away when reload the page and the black button only appeared when scrolling the page.
My code:
$(window).scroll(function(){
if($(document).scrollTop() > 50 ){// se a rolagem passar de 200px esconde o elemento
$('.maxbutton-6.maxbutton.maxbutton-botao3.fancybox.iframe').fadeIn(0); // Esconde usando fadeOut
} else { // senão ele volta a ser visivel
$('.maxbutton-6.maxbutton.maxbutton-botao3.fancybox.iframe').fadeOut(0); // Mostra usando fadeIn
}
});
$(window).scroll(function(){
if($(document).scrollTop() > 50){// se a rolagem passar de 200px esconde o elemento
$('.maxbutton-5.maxbutton.maxbutton-area3.fancybox.iframe').fadeOut(0); // Esconde usando fadeOut
} else { // senão ele volta a ser visivel
$('.maxbutton-5.maxbutton.maxbutton-area3.fancybox.iframe').fadeIn(); // Mostra usando fadeIn
}
});
Recommended reading (on the community): formatting.
– LipESprY