How to rotate the background in css: first define the style for the content, and define the width and height of the li where the image is located; then set the transition effect for the image, using the transition attribute for the transition; then set the deformation for it through rotate; finally Just run the program.
The operating environment of this tutorial: windows7 system, css3 version, DELL G3 computer.
How to rotate the background with css:
First prepare an HTML document with two pictures in the document, and then rotate the two pictures.
Then define some styles for the content in HTML, as shown in the figure below, mainly the title and ul styles.
#Next, define the width and height of the li where the picture is located, as shown in the figure below.
#Then set the transition effect for the image and use the transition attribute for the transition, as shown in the figure below.
When the mouse is hovering over the image, set the transformation to it through rotate, as shown in the figure below. Positive numbers represent clockwise, and negative numbers represent counterclockwise. .
Finally run the program and you will see the effect as shown in the picture below. Place the mouse on the picture and it will rotate clockwise or counterclockwise.
Related tutorial recommendations: CSS video tutorial
The above is the detailed content of How to rotate the background in css. For more information, please follow other related articles on the PHP Chinese website!