0
我面臨很奇怪的問題。轉到頂部按鈕鉻後淡出不可見
當我使用頁面向下或碎片標識符跳轉到某個div,那時我的頂層圖像不可見。
這是我的代碼。
HTML:
<a title="Go to top" href="#" class="back-to-top"></a>
更少(CSS):
.back-to-top {
position: fixed;
bottom: 50%;
right: 15px;
text-decoration: none;
overflow: hidden;
font-size: 12px;
padding: 1em;
display: none;
background-image: url("/images/go-top.png");
width: 48px;
height: 48px;
}
的javascript:
$(window).scroll(function() {
if ($(this).scrollTop() > offset) {
$('.back-to-top').fadeIn(600);
}
else {
$('.back-to-top').fadeOut(600);
}
});
$('.back-to-top').click(function(event) {
$('html, body').animate({scrollTop: 0}, duration);
return false;
});
凡'duration'被設置? – WASasquatch
它的變量值爲600 – kitkat43
如果你可以發佈整個腳本,我可以嘗試調試它,而不是像下面所有其他的一樣給你一個新的。 – WASasquatch