我会创造一个脉冲颜色效果,最大持续时间为一分钟。要在css中产生这种效果,我可以这样做:

@-webkit-keyframes pulse {
  0% { background-color: #ed8c55; }
  50% { background-color: #FFF; }
  100% { background-color: #ed8c55; }
}

@-moz-keyframes pulse {
  0% { background-color: #ed8c55; }
  50% { background-color: #FFF; }
  100% { background-color: #ed8c55; }
}

@-o-keyframes pulse {
  0% { background-color: #ed8c55; }
  50% { background-color: #FFF; }
  100% { background-color: #ed8c55; }
}

@keyframes pulse {
  0% { background-color: #ed8c55; }
  50% { background-color: #FFF; }
  100% { background-color: #ed8c55; }
}

.element {
  width: 50px;
  height: 50px;
  background: #ed8c55;
  -webkit-animation: pulse 3s infinite; /* Safari 4+ */
  -moz-animation:    pulse 3s infinite; /* Fx 5+ */
  -o-animation:      pulse 3s infinite; /* Opera 12+ */
  animation:         pulse 3s infinite; /* IE 10+, Fx 29+ */
}

<div class="element"></div>

但这次我不能控制时间。特别是,我会在按钮内的图标中产生这种效果
<md-button aria-label="Info" id="info" title="info" ng-click="openInfo()" class="md-icon-button">
  <i class="zmdi zmdi-help red-color"></i>
</md-button>

<i />元素应该以红色脉冲最多一分钟。这可能是用angularjs还是简单的javascript?

最佳答案

但这次我不能控制时间
您可以使用animation-iteration-count。由于动画需要3秒,因此可以将其值设为20

.element {
  width: 50px;
  height: 50px;
   background: #ed8c55;
  -webkit-animation: pulse 3s 20; /* Safari 4+ */
  -moz-animation:    pulse 3s 20; /* Fx 5+ */
  -o-animation:      pulse 3s 20; /* Opera 12+ */
  animation:         pulse 3s 20; /* IE 10+, Fx 29+ */
}

10-01 10:14