HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> img{ width:100px; height:100px; position: absolute; clip: rect(0px,100px,100px,0px); animation: myAnimation 5s infinite; -webkit-animation: myAnimation 5s infinite; /* Safari 4.0 - 8.0 */ } @keyframes myAnimation { 50% { clip: rect(0px,0px,100px,0px);} } /* Safari 4.0 - 8.0 */ @-webkit-keyframes myAnimation { 50% { clip: rect(0px,0px,100px,0px);} } </style> </head> <body> <h1>CSS Animatable clip</h1> <img src="apple.png"> </body> </html>
OUTPUT
×

Save as Private