在scrollTop上使用.animate

时间:2013-07-08 07:34:50

标签: javascript jquery jquery-animate

如何将.animate添加到此代码中?

$("body,html").scrollTop($("#wrapper3").position().top);

我尝试在.animate之前添加scrollTop,但它在Dreamweaver中一直显示错误。

感谢任何帮助。

编辑:

HTML

<!DOCTYPE html>
<meta charset=utf-8>
<html lang="da">
<html>
<head>
<link href="_css/fddkStyles.css" rel="stylesheet" type="text/css" />
<link href="jquery.mCustomScrollbar.css" rel="stylesheet" type="text/css" />
<script src="_jquery/jquery-1.10.1.min.js"></script>




<title>Title of the document</title>
</head>

<body>
<div id="wrapper">
<div id="bar16"></div>
</div>

<div id="wrapper2">
</div>

<div id="wrapper3">
</div>


<script src="_jquery/jquery.mCustomScrollbar.concat.min.js"></script>
<script src="_jquery/TweenMax.min.js"></script>
<script src="_jquery/my.js" type="text/javascript"></script>
<script src="_jquery/jquery.scrollTo-1.4.3.1-min.js"></script>


</body>

</html>

的JavaScript

$(document).ready(function(e) {
    $("#bar16").click(function() {
$("body,html").scrollTop($("#wrapper3").position().top);


});
});

1 个答案:

答案 0 :(得分:2)

目前还不是很清楚你想要达到什么样的结果,但如果我明白你的意思,你可以做到:

<h1 id="anchor">Lorem Ipsum</h1>
<p><a href="#anchor" class="topLink">Back to Top</a></p>

和jQuery:

    $("a.topLink").click(function() {
        $("html, body").animate({
            scrollTop: $($(this).attr("href")).offset().top + "px"}, {duration: 500, easing: "swing"
        });
        return false;
    });

#anchor可以更改为您想要的内容,“返回顶部”将转到您的#anchor。只需确保div(或在本例中为h1)具有idenditcal id。

这是Fiddle

跳转到页面顶部的可能原因是你没有加载jQuery。确保jQuery已加载。

修改

在编辑完成后,您应该更改此

<div id="bar16"></div>

到这个

<div id="bar16">
    <a href="#wrapper3" class="topLink">CLICK HERE</a></div>
</div>

就像这里:Fiddle