One keyframe
by achudars
CSS
@-webkit-keyframes pound {
50% { background:blue }
}
html { background:white }
body {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background:red;
-webkit-animation: 3s pound infinite;
}