0
我使用jQuery航點,當你到達div.main-content
區我的網站,像這樣來調用「返回頂部」按鈕:jQuery的航點 - 要扭轉功能
$('div.page.event div.main-content').waypoint(function() {
$('button.scrollToTop').fadeIn(200);
});
但我想不出如何將其反轉,以便當您回到header.main-header
時,按鈕消失。我試過這個:
$('div.page.event header.main-header').waypoint(function() {
$('button.scrollToTop').fadeOut(200);
});
但這並不奏效。我相信這太簡單了,我只是沒有理解這一點。有人可以幫忙嗎?