web-dev-qa-db-ja.com

ホバー効果:下の境界線を拡大

私は、ボーダーにトランジションホバーエフェクトを取得しようとしています

h1 {
  color: #666;
}

h1:after {
  position: absolute;
  left: 10px;
  content: '';
  height: 40px;
  width: 275px;
  border-bottom: solid 3px #019fb6;
  transition: left 250ms ease-in-out, right 250ms ease-in-out;
  opacity: 0;
}

h1:hover:after {
  opacity: 1;
}
<h1>CSS IS AWESOME</h1>

私はこれを試してみました Jsfiddle

44
Vivekraj K R

ホバーの下部境界線を拡大にするには、transform:scaleX'();mdn reference )を使用し、ホバー状態で0から1に遷移します。

境界ホバー効果がどのように見えるかの例を次に示します。 Expand border hover effect

ボーダーとトランジションはpseudo elementで設定され、テキストのトランジションを防ぎ、マークアップを追加しません。
左または右から下の境界線を展開するには、 transform-Origin property を擬似要素の左または右に変更できます。

h1 { color: #666;display:inline-block; margin:0;text-transform:uppercase; }
h1:after {
  display:block;
  content: '';
  border-bottom: solid 3px #019fb6;  
  transform: scaleX(0);  
  transition: transform 250ms ease-in-out;
}
h1:hover:after { transform: scaleX(1); }
h1.fromRight:after{ transform-Origin:100% 50%; }
h1.fromLeft:after{  transform-Origin:  0% 50%; }
<h1 class="fromCenter">Expand from center</h1><br/>
<h1 class="fromRight">Expand from right</h1><br/>
<h1 class="fromLeft">Expand from left</h1>

注:ブラウザーのサポートを最大化するには、ベンダープレフィックスを追加する必要があります( canIuse を参照)。

ホバーの下部の境界線を2行で展開します

テキストが2行にまたがるときに、この効果を実現できます。 before疑似要素は、bottom:1.2em;で最初の行に下線を引くために絶対的に配置されます。

h1 { position:relative;color: #666;display:inline-block; margin:0;text-transform:uppercase;text-align:center;line-height:1.2em; }
h1:after, h1:before {
  display:block;
  content: '';
  border-bottom: solid 3px #019fb6;  
  transform: scaleX(0);  
  transition: transform 250ms ease-in-out;
}
h1:before{
  position:absolute;
  bottom:1.2em; left:0;
  width:100%;
}
.ef2:hover:after {
  transition-delay:150ms;
}
  
h1:hover:after, h1:hover:before { transform: scaleX(1); }
<h1>Expand border<br/>on two lines</h1>
<br/>
<br/>
<h1 class="ef2">Expand border<br/>effect two</h1>

ホバーインとホバーの異なる遷移方向:

ポイントは、ホバー状態で変換元の位置を一方から他方に変更することです。このように、要素がもうホバーされていない場合、下のボードホバーで一方の側から入り、もう一方の側で出る
デモは次のとおりです。

h1 { color: #666;display:inline-block; margin:0;text-transform:uppercase; }
h1:after {
  display:block;
  content: '';
  border-bottom: solid 3px #019fb6;  
  transform: scaleX(0);  
  transition: transform 250ms ease-in-out;
}
h1.fromLeft:after{ transform-Origin: 100% 50%; }
h1.fromRight:after{  transform-Origin:   0% 50%; }
h1.fromLeft:hover:after{ transform: scaleX(1); transform-Origin:   0% 50%; }
h1.fromRight:hover:after{ transform: scaleX(1); transform-Origin: 100% 50%; }
<h1 class="fromRight">Expand from right</h1><br/>
<h1 class="fromLeft">Expand from left</h1>
138
web-tiki

これは古い投稿であり、既に回答されていますが、次の効果も気に入るかもしれません。

<div class="cd-single-point">
    <a class="cd-img-replace" href="#0"></a>
</div>

   .cd-single-point {
    position: absolute;
    list-style-type: none;
    left: 20px;
    top: 20px;
  }

  .cd-single-point>a {
      position: relative;
      z-index: 2;
      display: block;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #0079ff;
      -webkit-transition: background-color 0.2s;
      -moz-transition: background-color 0.2s;
      -o-transition: background-color 0.2s;
      transition: background-color 0.2s;
  }

  .cd-single-point::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation: cd-Pulse 2s infinite;
  }

  @keyframes cd-Pulse
  {
  0%  {box-shadow:0 0 0 0 #0079ff}
  100%{box-shadow:0 0 0 20px rgba(255,150,44,0)}
  }

DEMO

4
Philip Enc

単純なトランジション効果を使用して行うことができます。

HTML

<h1>CSS IS AWESOME</h1>

CSS

h1 {
    color: #666;
    position: relative;
    display: inline-block;
}

h1:after {
    position: absolute;
    left: 50%;
    content: '';
    height: 40px;
    height: 5px;
    background: #f00;
    transition: all 0.5s linear;
    width: 0;
    bottom: 0;  
}

h1:hover:after {
    width: 270px;
    margin-left: -135px;
}

Fiddle へのリンク

2
Raju Shrestha

シンプルで軽量なバージョン

li {
    margin-bottom: 10px;
}

.cool-link {
    display: inline-block;
    color: #000;
    text-decoration: none;
}

.cool-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #000;
    transition: width .3s;
}

.cool-link:hover::after {
    width: 100%;
    //transition: width .3s;
}
<ul>
    <li><a class="cool-link" href="#">A cool link</a></li>
    <li><a class="cool-link" href="#">A cool link</a></li>
    <li><a class="cool-link" href="#">A cool link</a></li>
</ul>
2
transition: all 1000ms ease-in-out; 

デモ

またはあなたはこれを探していますか

Demo2

1
himanshu
h1 {
  color: #666;
  display:inline-block;
  margin:0;
  text-transform:uppercase;
 }
h1:after {
  display:block;
  content: '';
  border-bottom: solid 3px #92a8d1;  
  transform: scaleX(0);  
  transition: transform 800ms ease-in-out;
}
h1:hover:after {
 transform: scaleX(1);
}
<h1 class="fromCenter">Hover Over Me</h1><br/>
1
h1 {
  color: #666;
}

h1:after {
  position: absolute;
  left: 10px;
  content: '';
  height: 40px;
  width: 275px;
  border-bottom: solid 3px #019fb6;
  transition: opacity 450ms ease-in-out;
  opacity: 0;
}

h1:hover:after {
  opacity: 1;
}
<h1>CSS IS AWESOME</h1>
0