css3实现页面元素抖动效果

阿里云国内75折 回扣 微信号:monov8
阿里云国际,腾讯云国际,低至75折。AWS 93折 免费开户实名账号 代冲值 优惠多多 微信号:monov8 飞机:@monov6

html

<div id="shake" class="shape">horizontal shake</div>

jsvue3

  function shake(elemId) {
    const elem = document.getElementById(elemId)
    console.log('获取el', elem)

    if (elem) {
      elem.classList.add('shake')
      setTimeout(() => {
        elem.classList.remove('shake')
      }, 800)
    }
  }

  onMounted(() => {
    setTimeout(() => {
      console.log('进来settimeout')
      shake('shake')
    }, 5000)
  })

css

  .shape {
    margin: 50px;
    width: 200px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border: 1px solid black;
  }
  .shake {
    animation: shake 800ms ease-in-out;
  }
  @keyframes shake {
    /* 水平抖动核心代码 */
    10%,
    90% {
      transform: translate3d(-1px, 0, 0);
    }
    20%,
    80% {
      transform: translate3d(+2px, 0, 0);
    }
    30%,
    70% {
      transform: translate3d(-4px, 0, 0);
    }
    40%,
    60% {
      transform: translate3d(+4px, 0, 0);
    }
    50% {
      transform: translate3d(-4px, 0, 0);
    }
  }

参考链接https://juejin.cn/post/6957517187049324552

阿里云国内75折 回扣 微信号:monov8
阿里云国际,腾讯云国际,低至75折。AWS 93折 免费开户实名账号 代冲值 优惠多多 微信号:monov8 飞机:@monov6
标签: CSS