Recently, the following effects need to be achieved Initially, using css3D rotation to write, can only achieve the following effects I can't turn all the circles to the front. I don't know if my operation is wrong or 3D rotation is not possible. If anyone knows, please enlighten me. Since it cannot be realized in 3D, we can only turn to 2D. As long as we can realize the rotation according to the ellipse, it will be ok. X-axis and Y-axis move within a rectangle Path is a slash .ball { animation: animX 2s linear infinite alternate, animY 2s linear infinite alternate } @keyframes animX{ 0% {left: 0px;} 100% {left: 500px;} } @keyframes animY{ 0% {top: 0px;} 100% {top: 300px;} } Setting animation delay Set the Y-axis delay to half the animation duration. You can see that the motion trajectory becomes a diamond shape. It feels a bit better. .ball { animation: animX 2s linear 0s infinite alternate, animY 2s linear -1s infinite alternate } Sets a cubic Bezier curve .ball { animation: animX 2s cubic-bezier(0.36, 0, 0.64, 1) -1s infinite alternate, animY 2s cubic-bezier(0.36, 0, 0.64, 1) 0s infinite alternate } Zoom in and out In order to make it look three-dimensional, add .ball1 { animation: animX 2s cubic-bezier(0.36, 0, 0.64, 1) -1s infinite alternate, animY 2s cubic-bezier(0.36, 0, 0.64, 1) 0s infinite alternate, scale 4s cubic-bezier(0.36, 0, 0.64, 1) 0s infinite alternate; } @keyframes scale { 0% { transform: scale(0.7) } 50% { transform: scale(1) } 100% { transform: scale(0.7) } } Mission accomplished! The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. |
<<: How to extract string elements from non-fixed positions in MySQL
>>: How to wrap HTML title attribute
I used vue and bootstrap to make a relatively sim...
Apache Tomcat is an open source software that imp...
I searched a lot of articles online but didn'...
Table of contents 1.v-model 2. Binding properties...
question Adding the type of uploaded file in acce...
Question: In index.html, iframe introduces son.htm...
This article example shares the specific code of ...
Recently, I need to package the project for membe...
1: Differences in speed and loading methods The di...
Get ip tool import lombok.extern.slf4j.Slf4j; imp...
Table of contents 1. Signal List 1.1. Real-time s...
Preface We often say that node is not a new progr...
JSON data is displayed and formatted on the HTML ...
Transtion in vue is an animation transition enca...
This article describes the Linux user and group c...