1

How do I go by adding .animate to this piece of code?

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

I have tried adding .animate before scrollTop, but it keeps showing an error in Dreamweaver.

Any help is appreciated.

EDIT:

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);


});
});
4

1 回答 1

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)具有相同的 id。

这是一个小提琴

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

编辑

好的,在您编辑之后,您应该更改它

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

对此

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

喜欢这里:小提琴

于 2013-07-08T07:41:17.720 回答