Quantcast
Channel: CSSタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 8771

メニューリストのhover時に、下線が出現するアニメーションのCSS記載例

$
0
0

ポートフォリオ用サイトを作る際に、記載したCSS。

.gnav a {
  position: relative;
  text-decoration: none;
  color: #333;
  height: 100vh;
  padding: 27px 0;
  font-weight: bold;
  transition: .3s;
}

.gnav a:hover {
  opacity: 1;
}

.gnav a:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  content:"";
  transition: .3s;
  transform: translateX(-50%);
  background: #333;
}
.gnav a:hover:after {
  width: 100%;
}

*, *:before, *:after {
  box-sizing: border-box;
}

Viewing all articles
Browse latest Browse all 8771

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>