我使用this website上發現的某種樣式創建下劃線幻燈片。例如,請參閱jsfiddle。
正如你所看到的,下劃線從左到右。我將如何去在文本的頂部製作另一行,從右向左轉換?我可以簡單地調整我的當前代碼片段,還是必須完全使用其他方法?使下劃線CSS過渡更改方向
.cmn-t-underline {
position: relative;
color: #ff3296;
}
.cmn-t-underline:after {
display: block;
position: absolute;
left: 0;
bottom: -10px;
width: 0;
height: 10px;
background-color: #2E9AFE;
content: "";
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
height:2px;
}
.cmn-t-underline:hover {
color: #98004a;
}
.cmn-t-underline:hover:after {
width: 100%;
\t height:2px;
}
<h1 class="cmn-t-underline">Test</h1>
不錯的工作。我想這與轉換類型有關。 –