search
HomeWeb Front-endCSS TutorialCSS transition effect: How to achieve the fade-in and fade-out rotation effect of elements

CSS transition effect: How to achieve the fade-in and fade-out rotation effect of elements

CSS transition effect: How to achieve the fade-in and fade-out rotation effect of elements

CSS transition effect is an animation effect used to control the state of an element when it changes. It can achieve smooth transition. In this article, I will introduce how to use CSS to achieve the fade rotation effect of elements and provide specific code examples.

First, we need to create an HTML page that contains the elements to which we want to apply the transition effect. Here is a sample code:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>CSS过渡效果示例</title>
  <link rel="stylesheet" href="styles.css">
</head>
<body>
  <div class="box">
    <h1 id="Hello-CSS-Transitions">Hello, CSS Transitions!</h1>
  </div>
</body>
</html>

In the above code, we create a <div> element with the class name "box" and include a title. <p>Next, we need to add CSS styles to the elements to achieve animation effects. In this case, we want the element to gradually change from transparent to opaque as it fades in, and from opaque to transparent as it fades out, and we also want the element to rotate during the transition. Here is the corresponding CSS code example: </p><pre class='brush:php;toolbar:false;'>.box { width: 200px; height: 200px; background-color: #f1f1f1; opacity: 0; transition: opacity 1s, transform 1s; } .box.fade-in { opacity: 1; transform: rotate(360deg); } .box.fade-out { opacity: 0; transform: rotate(-360deg); }</pre><p> In the above code, we first set the width, height and background color of the element and set the transparency to 0. Then, we use the <code>transition attribute to specify the attributes and transition time that need to be transitioned. Here we set the transparency and rotation effects to both need to be transitioned, and the duration is 1 second.

Next, we define two style rules with class names "fade-in" and "fade-out". Represents the fade-in and fade-out effects respectively. By modifying the transparency and rotation properties, the effect of elements gradually showing and hiding is achieved.

Finally, we need to add a trigger event for the animation effect to the element. Animation effects can be triggered using JavaScript or CSS pseudo-classes. The following is a sample code that uses JavaScript to trigger animation effects:

let boxElement = document.querySelector('.box');

boxElement.addEventListener('click', function() {
  boxElement.classList.toggle('fade-in');
  boxElement.classList.toggle('fade-out');
});

In the above code, we first use the querySelector method to obtain the element with the class name "box" and add It is stored in the variable boxElement. Then we use the addEventListener method to bind a click event to the element. When the element is clicked, we switch the class name of the element through the toggle method of the classList attribute, thereby triggering the fade in and fade out effect.

Through the above steps, we can achieve the fade-in and fade-out rotation effect of elements. In practical applications, you can adjust the transition time, rotation angle, trigger events, etc. as needed to meet your specific needs.

Summary:
This article introduces how to use CSS to achieve the fade-in and fade-out rotation effect of elements, and provides specific code examples. Through CSS transition effects, we can easily add animation effects to elements to improve user experience. Hope this article is helpful to you!

The above is the detailed content of CSS transition effect: How to achieve the fade-in and fade-out rotation effect of elements. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
A Little Reminder That Pseudo Elements are Children, Kinda.A Little Reminder That Pseudo Elements are Children, Kinda.Apr 19, 2025 am 11:39 AM

Here's a container with some child elements:

Menus with 'Dynamic Hit Areas'Menus with 'Dynamic Hit Areas'Apr 19, 2025 am 11:37 AM

Flyout menus! The second you need to implement a menu that uses a hover event to display more menu items, you're in tricky territory. For one, they should

Improving Video Accessibility with WebVTTImproving Video Accessibility with WebVTTApr 19, 2025 am 11:27 AM

"The power of the Web is in its universality. Access by everyone regardless of disability is an essential aspect."- Tim Berners-Lee

Weekly Platform News: CSS ::marker pseudo-element, pre-rendering web components, adding Webmention to your siteWeekly Platform News: CSS ::marker pseudo-element, pre-rendering web components, adding Webmention to your siteApr 19, 2025 am 11:25 AM

In this week's roundup: datepickers are giving keyboard users headaches, a new web component compiler that helps fight FOUC, we finally get our hands on styling list item markers, and four steps to getting webmentions on your site.

Making width and flexible items play nice togetherMaking width and flexible items play nice togetherApr 19, 2025 am 11:23 AM

The short answer: flex-shrink and flex-basis are probably what you’re lookin’ for.

Position Sticky and Table HeadersPosition Sticky and Table HeadersApr 19, 2025 am 11:21 AM

You can't position: sticky; a

Weekly Platform News: HTML Inspection in Search Console, Global Scope of Scripts, Babel env Adds defaults QueryWeekly Platform News: HTML Inspection in Search Console, Global Scope of Scripts, Babel env Adds defaults QueryApr 19, 2025 am 11:18 AM

In this week's look around the world of web platform news, Google Search Console makes it easier to view crawled markup, we learn that custom properties

IndieWeb and WebmentionsIndieWeb and WebmentionsApr 19, 2025 am 11:16 AM

The IndieWeb is a thing! They've got a conference coming up and everything. The New Yorker is even writing about it:

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.