EN
CSS - rotate image on hover
0
points
In this article, we would like to show you how to rotate image on hover event using CSS.
Quick solution:
img {
transition: 1s;
}
img:hover {
transform: rotate(360deg);
}
The :hover CSS pseudo-class is triggered when the user hovers over an element with the cursor, changing the element style to the one specified within curly brackets.
Practical example
In this example, we rotate the img element with the following steps:
- in
imgstyle, we specify the image style at the beginning and use thetransitionproperty to smoothly rotate theimgover2seconds, - we use
img:hoverpseudo-class withtransformproperty inside that actually rotates theimgelement on the hover event.
// ONLINE-RUNNER:browser;
<!doctype html>
<html>
<head>
<style>
body {
height: 200px;
}
img {
height: 100px;
margin: 30px;
transition: 2s;
}
img:hover {
transform: rotate(360deg);
}
</style>
</head>
<body>
<img src="https://dirask.com/static/bucket/1631898942509-VMYrnXyYZv--image.png" />
</body>
</html>