0

啊,太让我沮丧了。我正在尝试使用简单的淡入淡出滚动到顶部脚本,但它在我的网站上不起作用,也许有冲突?

HTML:

 <a href="#" class="scrollup">Scroll</a>

CSS:

.scrollup{
width: 15px;
height: 15px;
position: fixed;
top: 50px;
left: 15%;
display: none;
text-indent: -9999px;
background: url('../images/arrow.png') no-repeat;
z-index: 5000;
}

查询:

$(document).ready(function(){ 

    $(window).scroll(function(){
        if ($(this).scrollTop() > 100) {
            $('.scrollup').fadeIn();
        } else {
            $('.scrollup').fadeOut();
        }
    }); 

    $('.scrollup').click(function(){
        $("html, body").animate({ scrollTop: 0 }, 600);
        return false;
    });

});

网站: http: //kaye.at/test/

4

1 回答 1

1

您需要在调用之前导入一个jquery库。$(function(){

<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>在你的<head>元素中添加。

此外,.no-touch .vs-container { overflow-x: hidden; }防止触发窗口文档上的滚动事件。

于 2013-09-18T15:35:53.320 回答