Midterm Excercise 4 (Copy 3013)
✨ นายธนเดช แซ่ฉั่ว
<html> <style> body{ background:black; display:flex; margin: 0; } .image{ height:40vh; border-radius: 100%; box-shadow: 0px 0px 70px hsla(180, 100%, 50%, .7); transition: all 0.5s; margin:auto; } .image:hover{ box-shadow: 0px 0px 100px hsla(180, 100%, 50%, 1); } </style> <body> <img class="image" src="https://media.giphy.com/media/OPU6wzx8JrHna/giphy.gif"> </body> </html>