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: 120px; transition: left 5s cubic-bezier(.3, -1, .3, 2); } </style> </head> <body><img class="imgClass" src="https://www.w3docs.com/uploads/media/default/0001/05/9eb9e9cba721ba3bb5e653751449173197f2924a.png" onclick="this.style.left='600px'"></body> </html>
Result:
Report an issue