Source Code:
(back to article)
<!DOCTYPE html> <html> <head> <title>Title of the Document</title> <style> .imgClass { position: relative; cursor: pointer; width: 200px; height: 140px; left: 0; transition: left 6s cubic-bezier(0, 0, 1, 1); } </style> </head> <body> <img class="imgClass" src="https://www.w3docs.com/uploads/media/default/0001/05/9eb9e9cba721ba3bb5e653751449173197f2924a.png" onclick="this.style.left='450px'"> </body> </html>
Result:
Report an issue