Skip to content

Home

Button fill animation

Creates a fill animation on hover.

<button class="animated-fill-button">Submit</button>
.animated-fill-button {
  padding: 20px;
  background: #fff;
  color: #000;
  border: 1px solid #000;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}

.animated-fill-button:hover {
  background: #000;
  color: #fff;
}

More like this

Start typing a keyphrase to see matching snippets.