Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS를 사용한 플래시 애니메이션 효과


요소의 밝은 빛이 갑자기 짧은 순간에 폭발하면 플래시 효과가 생성됩니다.

예시

<html>
   <head>
      <style>
         .animated {
            background-image: url(/css/images/logo.png);
            background-repeat: no-repeat;
            background-position: left top;
            padding-top:95px;
            margin-bottom:60px;
            -webkit-animation-duration: 1s;
            animation-duration: 1s;
            -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
         }

         @keyframes flash {
            0%, 50%, 100% {
               opacity: 1;
            }
            25%, 75% {
               opacity: 0;
            }
         }

         .flash {
            animation-name: flash;
         }
      </style>

   </head>
   <body>

      <div id = "animated-example" class = "animated flash"></div>
      <button onclick = "myFunction()">Reload page</button>

      <script>
         function myFunction() {
            location.reload();
         }
      </script>
   </body>
</html>