HTML _CSS

filter() Animation

HiroDaegu 2022. 4. 16. 00:22
728x90
SMALL
<img src="#" alt="" class="blob">
.blob {
  width: 150px;
  height: 150px;
  animation: hue-animation 5s alternate infinite;
}

@keyframes hue-animation {
  100% {
    filter: hue-rotate(360deg);
  }
}

 

 

728x90
LIST