私はこれを理解しようとしましたが、彼がどのようなコードを使用したのか理解できませんでした。アニメーションの色が変化するアンダーライン効果
私は彼が右上隅に与える影響に似たものを再作成します。アニメーション化されたスライディングバーが現れて消えていくと色が変わる場所。
私は確かにhttp://bradsknutson.com/blog/css-sliding-underline/のコードがこれの基礎であると確信しています。私はスライドバーを使って色を変えることができましたが、滑らかではなく、色の変化も急です。
私の試み: http://codepen.io/Dingerzat/pen/mOmzVp
/* CSS */
.sliding-u-l-r-l {
display: inline-block;
text-decoration:none;
color: #000000;
position: relative;
padding-bottom: 3px;
}
.sliding-u-l-r-l:before {
content: '';
display: block;
position: absolute;
left: 0;
bottom: 0;
height: 3px;
width: 0;
transition: width 0s ease, background .5s ease;
}
.sliding-u-l-r-l:after {
content: '';
display: block;
position: absolute;
right: 0;
bottom: 0;
height: 3px;
width: 0;
background: blue;
transition: width .5s ease;
}
.sliding-u-l-r-l:hover:before {
width: 100%;
background: red;
transition: width .5s ease;
}
.sliding-u-l-r-l:hover:after {
width: 100%;
background: transparent;
transition: all 0s ease;
}
。
<!-- HTML -->
<a class=sliding-u-l-r-l href="http://codepen.io">A link that is and never is</a>
は、問題の原因となっているcodepenですか? – Schro
おい、すみません。私もそれに気付かなかった... <口に足> –
よくtbh私はおそらくコードスニペットを使用して開始する必要があります、私は感情を得るcodepenちょっとここに眉をひそめですか? – Schro