使用CSS box-shadow进行脉冲动画会占用相当大的CPU

时间:2017-11-22 14:47:44

标签: html css twitter-bootstrap css3 box-shadow

需要在标签上显示脉冲动画,以突出显示未完成的通知。 我在网上进行研究时遇到了this并且已经实现了相同的目标。它运行良好,但是,当标签脉冲时,CPU使用率恒定为50%,而通常几乎没有任何东西。 我想了解这是怎样或为什么发生的,如果可能的话,我想了解一下。

CSS:

.pulse {
   /*margin:100px;*/
   display: block;
   /*width: 22px;*/
   /*height: 22px;*/
   /*border-radius: 100%;*/
   background: #cca92c;
   cursor: pointer;
   box-shadow: 0 0 0 rgba(204,169,44, 0.4);
   animation: pulse 2s infinite;
 }

 .pulse:hover {
   animation: none;
 }

 @-webkit-keyframes pulse {
   0% {
     -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
   }
   70% {
       -webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
   }
   100% {
       -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
   }
 }

 @keyframes pulse {
   0% {
     -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
     box-shadow: 0 0 0 0 rgba(196,33,61, 0.85);
   }
   70% {
       -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
       box-shadow: 0 0 0 10px rgba(204,169,44, 0);
   }
   100% {
       -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
       box-shadow: 0 0 0 0 rgba(204,169,44, 0);
   }
 }

HTML:

    <a class="dropdown-toggle" data-toggle="dropdown" id="alertingDashboardDropdown" href="#">Alerts Dashboard
                    <span class="label {{alertCount.totalOpenAlertsLabelClass}} dropdown-subscript-white pull-right">{{alertCount.totalOpenAlerts}}</span>
                </a>
.
.

{{alertCount.totalOpenAlertsLabelClass}}基本上会返回“label-primary pulse”

1 个答案:

答案 0 :(得分:6)

这是因为您使用的box-shadow对动画效果不佳,因为它会触发重新绘制。

您可以check here触发布局,绘制和合成更改的属性。

最好的是opacitytransform,也许您可​​以更改动画以使用它们。

编辑:创建了2个jsfiddle,一个带有box-shadow,另一个带有transform。我已经编辑了您的代码,但您可以检查性能,研究它,了解变化并根据您的需求进行调整。

我是怎么做到的:

添加了一个:before伪元素,该元素将在该数字下运行动画。 will-change: transform;告诉浏览器元素的转换将发生变化,浏览器会对其进行优化。

.pulse {
  position: relative;
  display: inline-block;
  width: 22px; 
  height: 22px;
  line-height: 22px;
  border-radius: 100%;
  background-color: #cca92c;
  text-align: center;
  cursor: pointer; 
}

.pulse:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; 
  height: 100%;
  background-color: #cca92c;
  border-radius: 100%; 
  z-index: -1;
  animation: pulse 2s infinite; 
  will-change: transform;
}

.pulse:hover:before {
  animation: none;
}

 @keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
 }
<a class="dropdown-toggle" data-toggle="dropdown" id="alertingDashboardDropdown" href="#">
  <span>Alerts Dashboard</span>
  <span class="pulse">5</span>
</a>