先看效果
乍一看,是不是感覺很簡單,仔細一瞅發現事情好像沒有那麼簡單。
如果十分鐘還沒想出怎麼實現,那就把簡歷上的“精通css”改成“瞭解css”……?
大部分人第一感覺都是想著用border-bottom
去做,但是仔細看一下這個是多行文字,下劃線始終在最後一行肯定是不合適的,而且下劃線運動軌跡是:滑鼠移入-從從到尾顯示,滑鼠移出-從頭到尾消失。
程式碼實現
讓我們進入正題,這個效果是使用css的線性漸變linear-gradient
實現的,具體程式碼如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.container {
width: 400px;
}
.link {
font-size: 1.2em;
line-height: 1.6em;
text-decoration: none;
font-family: sans-serif;
color: #333;
}
.underline {
width: calc(100%); /* 相容IE */
background-image: linear-gradient(transparent calc(100% - 2px), powderblue 2px);
background-repeat: no-repeat;
background-position: right;
background-size: 0% 100%;
transition: background-size 1s ease;
}
.link:hover .underline {
background-position: left;
background-size: 100% 100%;
}
</style>
</head>
<body>
<div class="container">
<a class="link" href="#">
<span class="underline">I'm a super cool link because my underline animation works even in
multiple lines!
</span>
</a>
</div>
</body>
</html>
這裡修改了background-position
屬性設定背景影像的起始位置,使得滑鼠移出後的下劃線運動軌跡是從頭到尾消失,而不是反過來,如果不設定則是如下效果:
這個效果程式碼我就不復制了,把上面的background-position: right;
和 hover 中的background-position: left;
刪掉就是了。