美文网首页
CSS防止多次点击

CSS防止多次点击

作者: hao_developer | 来源:发表于2023-06-29 12:20 被阅读0次
.pause-content {
  display: inline-block;
  white-space: normal;
  background: pink;
  box-sizing: border-box;
  
  animation: throttle 2s step-end forwards;
}

.pause-content:active{
  animation: none;
}

@keyframes throttle{
  from{
    pointer-events: none;
  }
  to{
    pointer-events: all;
  }
}
<view bindtap="clickHandler" class="pause-content" style="margin: 100rpx;">按钮</view>
  clickHandler(){
    console.log('-----------');
  }

相关文章

网友评论

      本文标题:CSS防止多次点击

      本文链接:https://www.haomeiwen.com/subject/zmwaydtx.html