Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of CSS color Property Animation</title> <style> .animated { color: red; -webkit-animation: test 4s infinite; /* Chrome, Safari, Opera */ animation: test 4s infinite; } /* Chrome, Safari, Opera */ @-webkit-keyframes test { 50% {color: yellow;} } /* Standard syntax */ @keyframes test { 50% {color: yellow;} } </style> </head> <body> <p><strong>Warning:</strong> CSS Animations do not work in Internet Explorer 9 and earlier versions.</p> <p><strong>Note:</strong> The color of the following elements is animating from its initial value "red" to "yellow", and back to the initial value "red" again up to infinite times.<p> <h1 class="animated">This is an animated heading</h1> <p class="animated">This is an animated paragraph.</p> </body> </html>