ghooghe
9/23/2013 - 2:10 PM

flash highlight with css3 animation IE10+

flash highlight with css3 animation IE10+

.flash {
  -moz-animation: flash 2s ease-out;
  	-moz-animation-iteration-count: 1;
  	-webkit-animation: flash 2s ease-out;
  	-webkit-animation-iteration-count: 1;
  	-ms-animation: flash 2s ease-out;
  	-ms-animation-iteration-count: 1;
  	animation: flash 2s ease-out;
  	animation-iteration-count: 1;
}

@-webkit-keyframes flash {
    0% { 
    	background-color: none; 
    }
    30% { 
    	background-color: #ffff00; 
    }        
    100% {
    	background-color: none;
    }
}

@-moz-keyframes flash {
    0% {
    	background-color: none;
    }
    30% { 
    	background-color: #ffff00;
    }        
    100% {
    	background-color: none;
    }
}

@-ms-keyframes flash {
    0% { 
    	background-color: none;
    }
    30% { 
    	background-color: #ffff00;
    }        
    100% {
    	background-color: none;
    }
}