gpt4 book ai didi

css - 导航栏样式事件下划线

转载 作者:行者123 更新时间:2023-12-02 03:01:14 25 4
gpt4 key购买 nike

我有一个导航栏,当用户将鼠标悬停在链接上时,它会显示下划线动画。我正在尝试添加 css,以便事件导航栏具有永久下划线。

我的代码

<Navbar className="navbar-expand-sm navbar-toggleable-sm" light>
<Container id="ContainerGrnH">
<NavbarToggler onClick={this.toggleNavbar} className="mr-2" />
<Collapse className="d-sm-inline-flex flex-sm-row-reverse" isOpen={!this.state.collapsed} navbar>
<div class="topnav">
<ul className="navbar-nav flex-grow">
<NavItem>
<NavLink tag={Link} className="text-white" to="/home">HOME <div className="underline"></div></NavLink>
</NavItem>
<NavItem>
<NavLink tag={Link} className="text-white" to="/people-profiles">PEOPLE PROFILES<div className="underline"></div></NavLink>
</NavItem>
<NavItem>
<NavLink tag={Link} className="text-white" to="/Role-types">ROLE TYPES<div className="underline"></div></NavLink>
</NavItem>
<NavItem>
<NavLink tag={Link} className="text-white" to="/support">SUPPORT<div className="underline"></div></NavLink>
</NavItem>
<NavItem>
<NavLink tag={Link} className="text-white" id="contactushead" to="/contact-us">CONTACT US<div className="underline"></div></NavLink>
</NavItem>
</ul>
</div>
</Collapse>
</Container>
</Navbar>
.topnav ul a {
color: #ffffff;
text-decoration: none;
padding: 10px;
transition: color 0.5s;
}
.topnav ul li .underline {
height: 3px;
background-color: transparent;
width: 0%;
transition: width 0.2s, background-color 0.5s;
margin: 0 auto;
}

.topnav ul li.active-link .underline {
width: 100%;
background-color: white;
}

.topnav ul li:hover .underline {
background-color: white;
width: 100%;
}

.topnav ul li:hover a {
}

.topnav ul li:active a {
transition: none;
color: rgba(255,255,255,0.76);
}

.topnav ul li:active .underline {
transition: none;
background-color: rgba(255,255,255,0.76);
}

这很可能是一个小错误,但我已经尝试了一段时间,似乎找不到很多解决方案。

enter image description here

正如您从图像中看到的那样,“home”一词应该带有下划线,因为已选择“home”。

最佳答案

你使用的是react-router-dom的NavLink吗?

如果是这样,实际上有一个 activeClassName 属性可用于识别当前正在访问的路线。

<NavLink tag={Link} className="text-white" exact activeClassName="underline" to="/people-profiles">PEOPLE PROFILES</NavLink>

在你的CSS中

.underline {
border-bottom-width: 2px;
}

不要忘记在 NavLink 的 props 中添加 exact 以与路线正确匹配。

在这里阅读更多内容: https://github.com/ReactTraining/react-router/blob/master/packages/react-router-dom/docs/api/NavLink.md

关于css - 导航栏样式事件下划线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59931422/

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