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

WBOY
Release: 2023-11-21 13:18:47
Original
1052 people have browsed it

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:

      CSS过渡效果示例  

Hello, CSS Transitions!

Copy after login

In the above code, we create a

element with the class name "box" and include a title.

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:

.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); }
Copy after login

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 thetransitionattribute 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'); });
Copy after login

In the above code, we first use thequerySelectormethod to obtain the element with the class name "box" and add It is stored in the variableboxElement. Then we use theaddEventListenermethod to bind a click event to the element. When the element is clicked, we switch the class name of the element through thetogglemethod of theclassListattribute, 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!

Related labels:
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!