简体   繁体   English

当我在滚动功能上添加动画时导航栏熄灭

[英]Navbar goes out when I add animate on scroll feature

I am trying to implement animate on scroll in my site here using AOS我正在尝试使用AOS在我网站中实现滚动动画

HTML HTML

<link href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css" rel="stylesheet" type="text/css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.js"></script>

JS JS

<script>
   AOS.init({
       duration: 1200,
   });
</script>

and used like并像使用

<div data-aos="fade-up">

But my navbar goes out in mobile version.但是我的导航栏在移动版本中消失了。 See this And Some content not loading here , see this image.看到这个和一些内容没有在这里加载,看到这个图像。

Yes changing fade-left to fade-up fixed the problem, navbar is not working properly when fade-left is used是的,将淡入淡出更改为淡入淡出解决了问题,使用淡入淡出时导航栏无法正常工作

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM