I made a scrollable with a floating button inside, which makes it scroll to bottom when clicked,
JavaScript
x
31
31
1
<style>
2
box {
3
padding: 8px 20px;
4
border: 1px solid #222;
5
position: sticky;
6
bottom:10px;
7
left:30px;
8
box-shadow: -3px 3px 3px #999;
9
}
10
</style>
11
12
<hr>
13
<div id="utt" style="overflow-y: scroll; height:75%;">
14
<p>a</p><p>a</p><p>a</p><p>a</p><p>a</p><p>a</p><p>a</p><p>a</p><p>a</p><p>a</p><p>a</p><p>a</p><p>a</p><p>a</p><p>a</p><p>a</p><p>a</p><p>a</p>
15
16
<a href="#" onclick="scroll" class="toBotetom"><box><b>Scroll to bottom</b></box></a>
17
18
</div>
19
<hr>
20
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
21
<script>
22
$(document).ready(function scroll() {
23
$("a.toBotetom").click(function scroll() {
24
let elm = $("#utt")
25
elm.animate({
26
scrollTop: elm[0].scrollHeight
27
}, 500);
28
});
29
});
30
</script>
31
How can I make this button disappear when the is completely scrolled to the bottom?
Advertisement
Answer
Heading ##add this html:
JavaScript
1
2
1
<button id="scrollDown" onclick="bottom()">Scroll to bottom</button>
2
Then add this to Javascript:
JavaScript
1
17
17
1
var mybutton = document.getElementById("scrollDown");
2
window.onscroll = function() {scrollFunction()};
3
4
function bottom() {
5
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
6
mybutton.style.display = "block";
7
} else {
8
mybutton.style.display = "none";
9
}
10
}
11
12
// When the user clicks on the button, scroll to the bottom of the document
13
function bottom() {
14
document.body.scrollTop = 0;
15
document.documentElement.scrollTop = 5555550;
16
}
17
Now for the CSS:
JavaScript
1
16
16
1
#scrollDown {
2
display: none;
3
position: fixed;
4
bottom: 20px;
5
right: 30px;
6
z-index: 99;
7
font-size: 18px;
8
border: none;
9
outline: none;
10
background-color: red;
11
color: white;
12
cursor: pointer;
13
padding: 15px;
14
border-radius: 4px;
15
}
16