<!-- content to be placed inside <body>…</body> -->
/**
* animation-fill-mode with non-integer animation-iteration-count
*/
@keyframes foo { to { background: black }}
body {
animation: foo 3s .4 both linear;
}
// alert('Hello world!');