First, we need to use the transform-origin attribute. The transform attribute must be used. It has many attributes. We only need to use the rotate attribute of transform (to set the 2D rotation angle), and then use transform-origin to set its center point. Finally, match it with the CSS3 animation attribute animation. Complete the effect we want. Circles are dynamic. animation:myfirst 10s linear infinite; myfirst: Id for binding @keyframes Finally, with @keyframes @keyframes myfirst{ 0%{ transform: rotate(0); } 25% transform:rotate(90deg); } 50%{ transform:rotate(180deg); } 75% transform:rotate(270deg); } 100%{ transform: rotate(360deg); } } Finished This is the end of this article about using transform-origin in CSS3 to achieve dot distribution on a big circle and rotation effects. For more related content about using transform-origin in CSS3 to achieve dot distribution on a big circle and rotation effects, please search previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future! |
<<: Example of how to change the line spacing of HTML table
>>: Example of how to display a default image when an image does not exist in HTML
1. left(name,4) intercepts the 4 characters on th...
Aggregate functions Acts on a set of data and ret...
Because what I wrote before was not detailed enou...
<br />Before browsers can handle the next ge...
question When I was writing a project function to...
Table of contents 1. Encapsulate complex page dat...
There are two installation methods for MySQL: msi...
Table of contents Cycle comparison usage Summariz...
The final solution is in the last picture If you ...
The previous article introduced the MySql multi-c...
Table of contents 1. Routing related objects 2. L...
Install jdk: Oracle official download https://www...
Preface binlog is a binary log file, which record...
This article shares the specific code of React to...
The Linux seq command can generate lists of numbe...