With the continuous development of Web technology, animation effects play an increasingly important role in web design. Among them, the rotation effect is a very common and eye-catching animation effect. So, in this article, we will introduce how to use jQuery to achieve a simple div rotation effect.
The basic idea of using jQuery to achieve the div rotation effect is to use the transform attribute in CSS3 to rotate the div element by a certain angle along the Y axis. At the same time, we need to define some key CSS styles, such as rotation speed and animation easing functions. Then, use the animate() function in jQuery to apply these CSS styles to the div element to achieve a simple div rotation animation.
The following are the specific implementation steps:
- Create a div element and define the basic style
First, we need to add a div to the HTML code element. This div element will be used by us to demonstrate the rotation effect. Here, we first define a div element with class "box" and define some basic CSS styles for it:
<div class="box">Hello, World!</div> <style> .box { width: 200px; height: 200px; background-color: #f0f0f0; border-radius: 10px; text-align: center; line-height: 200px; font-weight: bold; font-size: 24px; } </style>
- Define rotation style
Since what we want to achieve is an animation effect of rotation along the Y axis, we need to define the rotation style. Here, we define a CSS style named "rotate" to rotate the div element 180 degrees along the Y axis:
.rotate { transform: rotateY(180deg); }
- Using jQuery to achieve animation effects
Next, we need to use jQuery's animate() function to apply the "rotate" style to the div element, and set attributes such as rotation speed and animation easing function. Here, we set the rotation speed to 1 second (1000 milliseconds) and use the "ease-in-out" easing function, as well as a callback function to change the text content in the div:
$('.box').click(function(){ $(this).animate({width: 'toggle'}, 1000, 'ease-in-out', function(){ $(this).toggleClass('rotate'); $(this).text('Hello, jQuery!'); }); });
in the above In the code, we use a click event to trigger the rotation animation. When the div element is clicked, it will first shrink and disappear, then rotate 180 degrees, and finally a new text content will pop up.
At this point, we have completed a simple div rotation animation effect. The complete code is as follows:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Div旋转效果</title> <style> .box { width: 200px; height: 200px; background-color: #f0f0f0; border-radius: 10px; text-align: center; line-height: 200px; font-weight: bold; font-size: 24px; } .rotate { transform: rotateY(180deg); } </style> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> <script> $(document).ready(function(){ $('.box').click(function(){ $(this).animate({width: 'toggle'}, 1000, 'ease-in-out', function(){ $(this).toggleClass('rotate'); $(this).text('Hello, jQuery!'); }); }); }); </script> </head> <body> <div class="box">Hello, World!</div> </body> </html>
Summary
In this article, we introduced how to use jQuery to implement a simple div rotation animation effect. Although this effect is simple, it demonstrates the important role of jQuery in the implementation of animation effects. Of course, we can also achieve more complex animation effects by further learning and mastering more jQuery skills.
The above is the detailed content of How to rotate div using jquery. For more information, please follow other related articles on the PHP Chinese website!

The article discusses useEffect in React, a hook for managing side effects like data fetching and DOM manipulation in functional components. It explains usage, common side effects, and cleanup to prevent issues like memory leaks.

Lazy loading delays loading of content until needed, improving web performance and user experience by reducing initial load times and server load.

Higher-order functions in JavaScript enhance code conciseness, reusability, modularity, and performance through abstraction, common patterns, and optimization techniques.

The article discusses currying in JavaScript, a technique transforming multi-argument functions into single-argument function sequences. It explores currying's implementation, benefits like partial application, and practical uses, enhancing code read

The article explains React's reconciliation algorithm, which efficiently updates the DOM by comparing Virtual DOM trees. It discusses performance benefits, optimization techniques, and impacts on user experience.Character count: 159

The article explains useContext in React, which simplifies state management by avoiding prop drilling. It discusses benefits like centralized state and performance improvements through reduced re-renders.

Article discusses preventing default behavior in event handlers using preventDefault() method, its benefits like enhanced user experience, and potential issues like accessibility concerns.

The article discusses the advantages and disadvantages of controlled and uncontrolled components in React, focusing on aspects like predictability, performance, and use cases. It advises on factors to consider when choosing between them.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Atom editor mac version download
The most popular open source editor
