Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use pure CSS to achieve an animation effect without DOM elements

2025-04-02 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article is about how to use pure CSS to achieve an animation effect without DOM elements. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

Code interpretation

There is no dom element, just write css.

Set up the page space:

Body {

Position:fixed

Margin:0

Width:100vw

Height:100vh

}

Set the background pattern with pseudo elements:

Body::before {

Content:''

Position:fixed

Width:200vmax

Height:200vmax

Background-color:steelblue

Color:turquoise

Background-image:

Linear-gradient (

45deg

CurrentColor25%

Transparent25%,transparent75%

CurrentColor75%)

Linear-gradient (

45deg

CurrentColor25%

Transparent25%,transparent75%

CurrentColor75%)

Background-position:00,5vmax5vmax

Background-size:10vmax10vmax

Pan the background pattern:

Body::before {

Top:50%

Left:50%

Animation:

9smoveinfiniteease-in-outalternate

}

@ keyframesmove {

From {

Left:-40%

Top:-40%

}

To {

Left:-60%

Top:-60%

}

}

Let the background pattern rotate:

Body::before {

Animation:

9smoveinfiniteease-in-outalternate

9s-1.5srotatinginfiniteease-in-outalternate

}

@ keyframesrotating {

To {

Transform:rotate (180deg)

}

}

Pan the page:

Body {

Top:50%

Left:50%

Animation:

3smoveinfiniteease-in-outalternate

}

Zoom the page:

Body {

Animation:

3smoveinfiniteease-in-outalternate

3szoominfiniteease-in-outalternate

}

@ keyframeszoom {

To {

Transform:scale (10)

}

}

Finally, add the discoloration effect:

@ keyframesrotating {

To {

Transform:rotate (180deg)

Filter:hue-rotate (1turn)

}

}

The great task has been completed!

Thank you for reading! On "how to use pure CSS to achieve an animation effect without DOM elements" this article is shared here, I hope the above content can be of some help to you, so that you can learn more knowledge, if you think the article is good, you can share it out for more people to see it!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report