html 页面加载上的闪烁按钮

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 页面加载上的闪烁按钮相关的知识,希望对你有一定的参考价值。

/* Jacob Lett - https//BootstrapCreative.com - Reference / Refresh / Repetition */

/* Chrome, Safari, Opera */
@-webkit-keyframes example {

  
}

/* Standard syntax */
@keyframes example {
    0%   {border:3px solid gray;}
    50%  {border:3px solid #fff;}
    100% {border:3px solid gray;}
}



.btn {
  border:3px solid gray;
    position: relative;
  animation-delay: 1s;
    -webkit-animation-name: example; /* Chrome, Safari, Opera */
    -webkit-animation-duration: .15s; /* Chrome, Safari, Opera */
    -webkit-animation-iteration-count: 2; /* Chrome, Safari, Opera */
    animation-name: example;
    animation-duration: .15s;
    animation-iteration-count: 2;
}
<div class="container">
   <div class="page-header">
      <h1>Animated Button on initial load</h1>
   </div><!--  /page-header  -->
   <a href="" class="btn btn-default">Click Here</a>
</div>

以上是关于html 页面加载上的闪烁按钮的主要内容,如果未能解决你的问题,请参考以下文章

jquery手机iphone页面闪烁

防止页面加载电子之间的白色闪烁

vue页面在加载的时候闪烁花括号{{}} 解决非工程化项目初始化页面闪动问题

Ajax加载后按钮上的JQuery HTML onclick属性不起作用

ie上iframe操作时闪烁的问题,重新加载的问题

sumoselect 多个下拉列表在页面加载时闪烁