gpt4 book ai didi

html - 全页js滑动效果?

转载 作者:太空狗 更新时间:2023-10-29 13:14:40 25 4
gpt4 key购买 nike

我正在尝试使用 Fullpage.js。这是我的脚本:

<div id="fullpage" style="margin-top: 55px">
<div class="section" id="first" style="background-color: red">Some section - Home</div>
<div class="section" id="services" style="background-color: blue">Some section - Services</div>
<div class="section" id="why" style="background-color: green">Some section - Why</div>
<div class="section" id="portofolio" style="background-color: red">Some section - Portofolio</div>
<div class="section" id="price" style="background-color: blue">Some section - Price</div>
</div>

<script type="text/javascript">
$(document).ready(function() {

$('#fullpage').fullpage({
menu: '#navbarNav',
css3: true,
scrollingSpeed: 1000
});
});
</script>

问题是,我的HTML页面没有幻灯片效果。任何解决方案?我在浏览器控制台中没有看到任何错误。

更新

还有第二个问题,当我滚动到随机部分然后单击菜单时, anchor 不起作用,我的意思是它停留在我滚动的部分。

最佳答案

您需要在脚本中定义 anchor ,如下所示:

$(document).ready(function() {
$('#fullpage').fullpage({
menu: '#navbarNav',
css3: true,
scrollingSpeed: 1000,
anchors:['first, 'secondPage', 'why', 'portofolio', 'price']
});
};

来源:https://github.com/alvarotrigo/fullPage.js#fullpagejs

关于html - 全页js滑动效果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46483170/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com