I am making vue project.
I want to hide some component while mouse scrolling, but when scroll ends, want to show component again.
I know using scroll event, but again doesn’t shows component.
JavaScript
x
15
15
1
<div class="table" @scroll="handleScroll()">
2
..
3
</div>
4
.
5
<div class="table" id="sumTable">
6
7
.
8
</div>
9
..
10
methods: {
11
handleScroll() {
12
$('#sumTable').hide();
13
},
14
}
15
Is this possible in vue?
Advertisement
Answer
I resolved this issue.
JavaScript
1
10
10
1
handleScroll() {
2
if(this.timer !== null) {
3
clearTimeout(this.timer);
4
$("#sumTable").hide();
5
}
6
this.timer = setTimeout(function() {
7
$("#sumTable").show();
8
}, 150);
9
},
10
timer variable is applied.