Example code for implementing ellipse trajectory rotation using CSS3

Example code for implementing ellipse trajectory rotation using CSS3

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 scale attribute. The scale animation should be the sum of the time of the X-axis and the Y-axis.

.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

Recommend

Vue+Bootstrap realizes a simple student management system

I used vue and bootstrap to make a relatively sim...

Detailed tutorial on using the tomcat8-maven-plugin plugin in Maven

I searched a lot of articles online but didn'...

Vue form input binding v-model

Table of contents 1.v-model 2. Binding properties...

Solution to Element-ui upload file upload restriction

question Adding the type of uploaded file in acce...

Vue custom optional time calendar component

This article example shares the specific code of ...

Docker-compose steps to configure the spring environment

Recently, I need to package the project for membe...

The difference between div and table in speed, loading, web application, etc.

1: Differences in speed and loading methods The di...

Solve the problem that the IP address obtained using nginx is 127.0.0.1

Get ip tool import lombok.extern.slf4j.Slf4j; imp...

A brief discussion on Linux signal mechanism

Table of contents 1. Signal List 1.1. Real-time s...

In-depth understanding of the implementation principle of require loader

Preface We often say that node is not a new progr...

How to display and format json data on html page

JSON data is displayed and formatted on the HTML ...

Summary of the application of transition components in Vue projects

​Transtion in vue is an animation transition enca...