您好,登錄后才能下訂單哦!
這篇文章主要講解了“CSS3怎么制作鏈接下劃線”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“CSS3怎么制作鏈接下劃線”吧!
鏈接下劃線是非常常見的一種樣式,最近做了一個非常簡單的視覺效果,非常不錯,完整代碼查看。
XML/HTML Code復(fù)制內(nèi)容到剪貼板
<!DOCTYPE html>
<html>
<head>
<meta charset="gb2312">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<style>
body{
background-color: #000;
}
h3{
text-align: center;
margin-top: 100px;
}
h3 > a {
position: relative;
color: #FFF;
text-decoration: none;
padding-bottom: 5px;
}
h3 > a:hover {
color: #FFF;
}
h3 > a:before {
content: "";
position: absolute;
width: 100%;
height: 2px;
bottom: 0;
left: 0;
background-color: #FFF;
visibility: hidden;
-webkit-transform: scaleX(0);
transform: scaleX(0);
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
h3 > a:hover:before {
visibility: visible;
-webkit-transform: scaleX(1);
transform: scaleX(1);
}
</style>
</head>
<body>
<h3>
<a href="/">懸停在我上面</a>
</h3>
</body>
</html>
創(chuàng)建這種效果是非常簡單的,不需要添加額外的DOM元素到HTML,不過需要考慮一下瀏覽器的兼容性問題,在老舊版本的瀏覽器中它只會顯示為一個普通的下劃線。
好了,現(xiàn)在正式開始。我們需要做的第一件事就是去除text-decoration,并設(shè)置鏈接為相對定位。我們需要確保鏈接在hover時不會改變顏色,這里我們拿h3舉例:
CSS Code復(fù)制內(nèi)容到剪貼板
h3 > a {
position: relative;
color: #000;
text-decoration: none;
}
h3 > a:hover {
color: #000;
}
接下來,我們要添加border,通過變換隱藏它。插入一個:before并且設(shè)置它scaleX(0),保守起見,如果瀏覽器不支持,我們通過visibility: hidden隱藏它。
CSS Code復(fù)制內(nèi)容到剪貼板
h3 > a:before {
content: "";
position: absolute;
width: 100%;
height: 2px;
bottombottom: 0;
left: 0;
background-color: #000;
visibility: hidden;
-webkit-transform: scaleX(0);
transform: scaleX(0);
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
最后設(shè)置動畫時間為0.3s,現(xiàn)在我們只需要設(shè)置元素在hover時顯示并且scaleX(1):
CSS Code復(fù)制內(nèi)容到剪貼板
h3 > a:hover:before {
visibility: visible;
-webkit-transform: scaleX(1);
transform: scaleX(1);
}
大功告成!
感謝各位的閱讀,以上就是“CSS3怎么制作鏈接下劃線”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對CSS3怎么制作鏈接下劃線這一問題有了更深刻的體會,具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。