web-dev-qa-db-ja.com

ホバーのインとアウトで左から右に下線を引く

次のコードでは、左から右にホバー下線効果が得られます。

.underline {
  display: inline;
  position: relative;
  overflow: hidden;
}
.underline:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: -5px;
  background: #000;
  height: 4px;
  transition-property: left right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.underline:hover:after,
.underline:focus:after,
.underline:active:after {
  right: 0;
}
<p>hello, link is <a href="#" class="underline">underline</a>
</p>

ホバーしていないときは、:after要素が初期状態の左側に戻ります。ホバーを離れるときに:afterが右に移動するで左ではない方法はありますか?

9
R M

Right/leftプロパティの代わりに幅をアニメーション化してみてください。

.underline {
  display: inline;
  position: relative;
  overflow: hidden;
}
.underline:after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  width: 0;
  bottom: -5px;
  background: #000;
  height: 4px;
  transition-property: width;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.underline:hover:after,
.underline:focus:after,
.underline:active:after {
  left: 0;
  right: auto;
  width: 100%;
}
<p>hello, link is <a href="#" class="underline">underline</a></p>

実際の例については、このフィドルを参照してください: https://jsfiddle.net/1gyksyoa/

12
Vlad Cazacu

この答えに基づいて: ホバーで下の境界線を広げるtransform-Originホバーのプロパティを使用して、探している「ホバーアウト」効果を実現します。以下に例を示します。

.expand{
  position:relative;
  text-decoration:none;
  display:inline-block;
}
.expand:after {
  display:block;
  content: '';
  border-bottom: solid 3px #000;  
  transform: scaleX(0);  
  transition: transform 250ms ease-in-out;
  transform-Origin:100% 50%
}
.expand:hover:after { 
  transform: scaleX(1);
  transform-Origin:0 50%;
}
Here is some dummy text <a href="#" class="expand">expand</a>
5
web-tiki