共计 659 个字符,预计需要花费 2 分钟才能阅读完成。
这是我在冲浪的时候,看到的一个款式,分享给大家,Css 真的想象力太丰盛了。这个滚动的下划线,还真想不出是背景色做的。
<!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>
.title {
width: 800px;
color: #333;
line-height: 50px;
}
.title span {background: linear-gradient(to right, #1890ff, #fa541c) no-repeat right bottom;
background-size: 0 4px;
transition: background-size 1500ms;
}
.title span:hover {
background-position-x: left;
background-size: 100% 2px;
}
</style>
</head>
<body>
<h2 class="title">
<span>10 年来,中国特色大国内政以元首内政为引领,以推动构建人类命运共同体为主线,应变局,解困局,翻新局,为保护世界战争、促成独特倒退作出了新的奉献。</span>
</h2>
</body>
</html>
正文完