如何实现在悬停反应路由器链接时显示下划线的过渡效果?
Posted
技术标签:
【中文标题】如何实现在悬停反应路由器链接时显示下划线的过渡效果?【英文标题】:How to implement transition effect for displaying underline on hovering a react router Link? 【发布时间】:2019-01-14 02:35:43 【问题描述】:我在我的 react 项目中使用 react-router-dom 节点包来实现路由。
设置路由器链接后,我使用以下自定义CSS默认隐藏链接下划线:
let styles = theme => (
TextLink:
position: 'relative',
color: 'white',
textDecoration: 'none',
'&:hover':
color: 'white',
,
);
使用这个我能够隐藏。
我的目标是制作一个链接,在悬停时显示下划线并带有过渡效果(链接下划线从中心到两端增长)。
修改后的 CSS 或带有任何其他节点包的代码示例会很有帮助。
【问题讨论】:
【参考方案1】:下面的例子是用纯css完成的。
reactjs 中的链接基本上是a
标签,因此你可以使用以下css
@import url("https://fonts.googleapis.com/css?family=Montserrat:500");
body
font-family: 'Montserrat', sans-serif;
ol,
ul
list-style: none;
li
display: inline-block;
padding: 20px 0 20px;
a
text-decoration: none;
position: relative;
display: block;
padding: 16px 0;
margin: 0 12px;
font-size: 1.2rem;
text-transform: uppercase;
transition: color 0.1s, background-color 0.1s;
color: #000;
a:hover
color: #4dd0e1;
a:focus, a:active
color: #00bcd4;
a::before
content: '';
display: block;
position: absolute;
top: 100%;
height: 3px;
width: 100%;
background-color: #00bcd4;
-webkit-transform-origin: center top;
transform-origin: center top;
-webkit-transform: scale(0, 1);
transform: scale(0, 1);
transition: color 0.1s, -webkit-transform 0.2s ease-out;
transition: color 0.1s, transform 0.2s ease-out;
transition: color 0.1s, transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
a:active::before
background-color: #00bcd4;
a:hover::before,
a:focus::before
-webkit-transform-origin: center top;
transform-origin: center top;
-webkit-transform: scale(1, 1);
transform: scale(1, 1);
<nav>
<ul>
<li class=""><a href="#">home</a></li>
<li class=""><a href="#">career</a></li>
<li class=""><a href="#">projects</a></li>
<li class=""><a href="#">about us</a></li>
<li class=""><a href="#">contact us</a></li>
</ul>
</nav>
【讨论】:
【参考方案2】:如果你给<a>
一个显示声明inline-block
,那么你可以应用一个::after
伪元素。伪元素可以作为传统下划线的动态替代。
您最初可以将伪元素定位在中心(使用position: absolute; left: 50%;
)并通过将其宽度设置为0
使其不可见。
当<a>
悬停时,您可以将伪元素的位置更新为left: 0;
,并赋予其宽度100%
。
如果这两个值同时进行动画处理,伪元素会从中心向外增长,直到变成全角下划线。
工作示例:
a
position: relative;
display: inline-block;
font-size: 16px;
line-height: 24px;
height: 24px;
color: rgb(0, 0, 191);
text-decoration: none;
a::after
content: '';
position: absolute;
display: block;
bottom: 0;
left: 50%;
width: 0;
height: 2px;
border-bottom: 2px solid rgb(255, 0, 0);
a, a::after
transition: all 0.6s linear;
a:hover
color: rgb(255, 0, 0);
a:hover::after
left: 0;
width: 100%;
<a href="">Hover Me</a>
【讨论】:
以上是关于如何实现在悬停反应路由器链接时显示下划线的过渡效果?的主要内容,如果未能解决你的问题,请参考以下文章