비전공자 개발일기

Button Purse AniMation 본문

HTML _CSS

Button Purse AniMation

HiroDaegu 2022. 4. 14. 00:20
728x90
SMALL

hover시, 버튼 주변에 그림자 생성

 

  <a href="#" class="button">Learn More</a>
.button {
  display: inline-block;
  color: #3c67e3;
  text-decoration: none;
  padding: 20px 50px;
  border: 3px solid #3c67e3;
  border-radius: 10px;
}

.button:hover {
  animation: pulsate 1s ease-in-out;
}

@keyframes pulsate {
  0% {
    box-shadow: 
        0 0 25px #5ddcff,
        0 0 50px #4e00c2;
  }
}
728x90
LIST

'HTML _CSS' 카테고리의 다른 글

filter() Animation  (0) 2022.04.16
Card Animation  (0) 2022.04.15
Bell Animation  (0) 2022.04.13
Loading Animation  (0) 2022.04.12
New HTML5 Tags with no CSS & JS  (0) 2022.01.17