我为我的图像控件创建了以下发光效果,但它不适用于 IE。我怎样才能让它在IE9上运行?或任何替代方案?
@-webkit-keyframes redPulse {
from { background-color: #FF5959; -webkit-box-shadow: 0 0 40px #FF5959; }
50% { background-color: #FD9FA2; -webkit-box-shadow: 0 0 40px #FD9FA2; }
to { background-color: #FF5959; -webkit-box-shadow: 0 0 40px #FF5959; }
}
.red{
-webkit-animation-name: redPulse;
-webkit-animation-duration: 2s;
-webkit-animation-iteration-count: infinite;
width:200px;
padding-top:0px;
margin-top:0px;
}