본문 바로가기
웹퍼블리싱/css

blink css

by developsigner 2018. 10. 22.

<style type="text/css">

.blink {

  animation: blink-animation 1s steps(20, start) infinite;

  -webkit-animation: blink-animation 1s steps(2

      

      0, start) infinite;

}

@keyframes blink-animation {

  to {

    background-color: #4cc927;

  }

}

@-webkit-keyframes blink-animation {

  to {

    background-color: #4cc927;

  }

}

</style>



원하는곳에 class="blink" 추가하기

반응형

댓글