我一直在我的网站中使用 Material-Design-Lite,并且我还使用 JQuery 来显示一个滚动到顶部的按钮。但他们没有一起工作。安装 Material-Design-Lite 后,该按钮在单击时不会执行任何操作。
<div class='back-to-top'>
<a class='hvr-icon-spin' href='#'/>
</div>
<script>
$(window).scroll(function() {
if($(this).scrollTop() > 200) {
$('#back-to-top').fadeIn();
} else {
$('#back-to-top').fadeOut();
}
});
$('#back-to-top').hide().click(function() {
$('html, body').animate({scrollTop:0}, 600);
return false;
});
</script>
有没有其他方法可以解决它?我试过不使用 JQyery,但也没有用。我正在尝试使用它的网站在这里。