在这里插入图片描述

<div class="taskBtnBox taskBtnBoxAnimation">
      <button class="taskBtn">开始任务</button>
</div>
.taskBtnBox{
      width:50%;
      height:100px;
      margin:120px auto 0;
      background: #0050b3;
      color:#fff;
      font-size: 35px;
      position: relative;
      border-radius: 60px;
      font-weight: bold;
      .taskBtn{
        width: 100%;
        height:100%;
        background: none;
        border: 0;
        color: #fff;
        font-weight: bold;
        cursor: not-allowed;
      }
    }
    .taskBtnBoxAnimation{
      animation: scaleAnimation 1s ease 0s infinite alternate;
      // animation-play-state: paused;
      animation-play-state: running;
      &:hover{
        animation-play-state: paused;
      }
      .taskBtn{
        cursor: pointer;
      }
    }
  @keyframes scaleAnimation {
    from    { transform: scale(1); }
    20%      { transform: scale(1.1); }
    80% { transform: scale(1.1); }
    100%,to { transform: scale(1); }
  }
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐