<script>
document.getElementById("scroll-btn").style.display = "none";
window.onscroll = function()
{
if (document.body.scrollTop > 600 || document.documentElement.scrollTop > 600)
{
document.getElementById("scroll-btn").style.display = "block";
}
else
{
document.getElementById("scroll-btn").style.display = "none";
}
};
</script>
<a class="ktop" id="scroll-btn" href="#">
<i class="fa fa-angle-up" aria-hidden="true">
</i></a>
0 Comments