“Podkreśl animację CSS” Kod odpowiedzi

Tekst podkreśla CSS

a:hover {
  text-decoration: underline;
}
Giamblers

Podkreśl animację CSS

.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: #0087ca;
}

.hover-underline-animation:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0087ca;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
Repulsive Rhinoceros

Dodaj rozszerzenie podkreślenia na obciążeniu strony CSS

#sec {
  display: inline-block;
  position: relative;
  padding-bottom: 3px;
}
#sec:after {
  content: '';
  display: block;
  margin: auto;
  height: 3px;
  width: 0px;
  background: transparent;
  transition: width .5s ease, background-color .5s ease;
}
#sec:hover:after {
  width: 100%;
  background: blue;
}
Clever Copperhead

Odpowiedzi podobne do “Podkreśl animację CSS”

Pytania podobne do “Podkreśl animację CSS”

Więcej pokrewnych odpowiedzi na “Podkreśl animację CSS” w CSS

Przeglądaj popularne odpowiedzi na kod według języka