css3實現動畫閃爍效果

我排著隊拿著前端號碼牌發表於2019-12-27

CSS3 animation 屬性 網址

程式碼如下:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
</head>
<style>
  .point {
    width: 50px;
    height: 50px;
    background-color: #2ea598;
    position: relative;
    border-radius: 50%;
  }
 
  /* 設定動畫前顏色 */
  .point-flicker:after {
    background-color: #2ea598;
  }
 
  /* 設定動畫後顏色 */
  .point-flicker:before {
    background-color: rgba(0, 168, 253, 0.2);
  }
 
  /* 設定動畫 */
  .point-flicker:before,
  .point-flicker:after {
    content: '';
    width: 80px;
    height: 80px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    border-radius: 50%;
    animation: warn 1.5s ease-out 0s infinite;
  }
 
  @keyframes warn {
    0% {
      transform: scale(0.5);
      opacity: 1;
    }
 
    30% {
      opacity: 1;
    }
 
    100% {
      transform: scale(1.4);
      opacity: 0;
    }
  }
</style>
 
<body>
  <div class="point point-flicker">
 
  </div>
</body>
<script>
</script> 
</html>

如需修改在頁面中的位置,將.point設為position:absoulute,修改其left,top位置即可
.point-flicker是相對.point來定位的,修改大小時要將它的margin-left: -40px; margin-top: -40px;改為對應大小的一半

效果圖:
在這裡插入圖片描述

相關文章