I have a button on the very bottom of my website which I want to be invisible until the page is scrolled to the bottom. Once scrolled to the bottom, the button animates in (opacity/visible animate to 1)
I have skrollr installed in the site already for other elements but not sure if I can accomplish this effect with scroller.
Basically, its an transition/animation on the button with a delay. Only activated once the site has reached the bottom.
HTML
<footer>
<div class="footer-btn"><a href="...">Miss something?</a></div>
...
CSS
.footer-btn a {
position: absolute;
bottom: 0px;
right: 0px;
padding: 25px 30px;
margin: 20px;
border: 3px solid #fff;
}