如何缩小滚动条上的导航栏?
How to shrink navbar on scroll?
我在我的网站中使用 Fullpage.js。对于 Fullpage.js,用于缩小导航栏的脚本不起作用。当我尝试在没有 Fullpage.js 的情况下编写 运行 脚本时,它运行良好。
CSS 用于导航栏
#navbar {
position: fixed;
z-index: 999;
width: 100%;
background-color: #212F56;
transition: 0.5s;
padding: 50px 10px;
overflow: auto;
top: 0;
}
用于缩小导航栏的脚本
<script>
window.onscroll = function()
{
scrollFunction()
};
function scrollFunction()
{
if (document.body.scrollTop > 10 || document.documentElement.scrollTop > 10)
{
document.getElementById("navbar").style.padding = "5px 10px";
}
else {
document.getElementById("navbar").style.padding = "50px 10px";
}
}
</script>
我让它工作了,它是 fullpage.js 库的问题,它还在控制台中给出了一个错误代码:
"fullPage: Fullpage.js version 3 has changed its license to GPLv3 and it requires a licenseKey
option. Read about it here:"
和
"fullPage: https://github.com/alvarotrigo/fullPage.js#options."
这是 codepen 上正在运行的缩小导航栏:
codepen
我刚刚删除了你的脚本标签
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/3.0.8/fullpage.min.js" integrity="sha256-caNcSA0LvOCX90PTuEbwl+V09xPMca13CJUasl+VCtk=" crossorigin="anonymous">
</script>
我在我的网站中使用 Fullpage.js。对于 Fullpage.js,用于缩小导航栏的脚本不起作用。当我尝试在没有 Fullpage.js 的情况下编写 运行 脚本时,它运行良好。
CSS 用于导航栏
#navbar {
position: fixed;
z-index: 999;
width: 100%;
background-color: #212F56;
transition: 0.5s;
padding: 50px 10px;
overflow: auto;
top: 0;
}
用于缩小导航栏的脚本
<script>
window.onscroll = function()
{
scrollFunction()
};
function scrollFunction()
{
if (document.body.scrollTop > 10 || document.documentElement.scrollTop > 10)
{
document.getElementById("navbar").style.padding = "5px 10px";
}
else {
document.getElementById("navbar").style.padding = "50px 10px";
}
}
</script>
我让它工作了,它是 fullpage.js 库的问题,它还在控制台中给出了一个错误代码:
"fullPage: Fullpage.js version 3 has changed its license to GPLv3 and it requires a licenseKey
option. Read about it here:"
和
"fullPage: https://github.com/alvarotrigo/fullPage.js#options."
这是 codepen 上正在运行的缩小导航栏: codepen
我刚刚删除了你的脚本标签
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/3.0.8/fullpage.min.js" integrity="sha256-caNcSA0LvOCX90PTuEbwl+V09xPMca13CJUasl+VCtk=" crossorigin="anonymous">
</script>