Summary of dynamic effects in jquery_jquery
Animation effects, if used comprehensively, can also be used to simply implement the effects of various jquery plug-ins using simple codes
This article refers to the book "A Brief Talk on jquery", organizes it, and combines it with my own reality It is based on experience and can be regarded as a learning manual
The code was all messed up when editing. I reorganized it. The code format may still be a bit messy. Please forgive me
Show, hide and combination (toggle) Effect
1.show(speed,callback);
Explanation: This method can display hidden elements, and the parameters are also default, that is, written in the form of show()
speed --- There are 3 parameters to specify the display speed. You can choose slow, normal, fast, or you can specify the number yourself (unit: milliseconds)
callback---callback function
The following is a simple example
var callback=function(){ //alert("I am the callback function") ;
}
var f1=function(){
// $("#t1").show(); Parameter default
// $("#t1").show( "fast",callback); The display speed is fast mode
$("#t1").show(3000,callback);//Customized display speed 3000 milliseconds
};
$("# b1").click(f1);
Html code
2 hidden(speed,callback);
Note: In contrast to the show method, used to hide elements, the parameters are the same as show, please refer to 3.1
The following example is to click a button to hide the displayed div
var callback=function(){ //alert("I am the callback function");
}
var f1=function(){
// $("#t1").hide() ; Parameter default
// $("#t1").hide("fast",callback); Display speed is fast mode
$("#t1").hide(3000,callback);/ /Custom display speed 3000 milliseconds
}; $("#b1").click(f1);
Html code
3 toggle(speed,callback)
Explanation: This can be understood as show() and hide () method, alternately execute show() and hide()
For example: the page has a hidden element, the first time toggle() is executed, the element is displayed, the second execution is executed, the element is hidden, and the third time The element is displayed again. . .
The parameters are the same as 3.1
var callback=function (){ //alert("I am a callback function");
}
var f1=function(){
//$("#t1").toggle(); // Parameter missing Save
//$("#t1").toggle("fast",callback); //Display speed in fast mode
$("#t1").toggle(3000,callback);
};
$("#b1").click(f1);
Html code
2. The sliding effect of elements (expand downwards, shrink upwards)
1 .slideDown(speed,[callback]);
Description: Change the height of the object to achieve a downward expansion animation effect, commonly used to display hidden elements
var callback=function(){ //alert("I am a callback function"); }
var f1=function( ){
//$("#t1").slideDown(); // Parameter default
//$("#t1").slideDown("fast",callback); //Display speed For fast mode
$("#t1").slideDown(1000,callback);
};
$("#b1").click(f1);
Html code
2.slideUp(speed,[callback]););
Description: Change the height of the object to achieve an upward expansion animation effect, commonly used to hide displayed elements
var callback=function(){
//alert ("I am the callback function");
}
var f1=function(){
//$("#t1").slideUp();
//Default parameters// $("#t1").slideUp("fast",callback); //The display speed is fast mode
$("#t1").slideUp(1000,callback);
};
$("#b1").click(f1);
3.slideToggle(speed,[callback]););
Explanation: It can be said to be a synthesis of the above two methods, which can replace toggle(); if you have carefully read the introduction of the above methods, you should know how to use them. In fact, these methods The usage and parameters are the same, but the display form is different. I won’t write the example
Fade in and out effect of three elements
1.fadeIn(speed,[callback]);
Description: Implement fade-out effect, used to display hidden elements
2.fadeOut(speed,[callback]);
Description: Implement fade-in effect, used to hide displayed elements
3, fadeTo(speed,opactity,callback);
Description: This method is used to change the transparency of the displayed element
Parameters: speed, callback have the same parameters as other animation methods introduced above. The opactity parameter represents transparency, and the value range is 0-1
var callback=function(){
//alert("I am Callback function");
};
var f1=function(){ $("#t1").fadeTo(1000,0.3,callback);//0.3 is 30% transparency
};
$("#b1").click(f1);
4. Custom animation
Note: As you can see from the previous one, two, and three, the display of elements includes show, slideDown, fadeIn, and the hidden animation effects of hide, slideUp, and fadeOut
, combine effects toggle, slideToggle, change transparency effect fadeTo, we can also customize some animation effects if needed
How to use custom animation: animate(params,speed,callback);
Parameter description: params---a set of style attributes and their values as animation attributes and final values
speed----Same as the speed attribute in the method introduced earlier
callback---callback function
Note: The style attributes of params must be written in camel case, that is, margin-left should be slightly smaller than marginLeft.
The following is an example
var callback =function(){
//alert("I am a callback function");
} ;
var par={ height: "70%" };
var f1=function(){
$("#t1").animate(par,1000,callback);
};
$("#b1").click(f1);
Html code

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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to create a search box with dynamic effects using HTML, CSS, and jQuery In modern web development, a common need is to create a search box with dynamic effects. This search box can display search suggestions in real time and automatically complete keywords as the user types. This article will introduce in detail how to use HTML, CSS and jQuery to implement such a search box. Creating the HTML Structure First, we need to create a basic HTML structure. The code is as follows: <!DOCT

When we work, we often need to use PPT. Sometimes we want to make the PPT more beautiful without looking dull. Many people will add dynamic effects to the PPT, so that if you are giving a speech, everyone will look at your PPT. It won’t be boring, but how to make the dynamic effect of ppt? Now I will share the steps with my friends! 1. First, we open the PPT on the computer, click the [Insert] button on the menu bar, click the [Picture] button, select a picture on the computer, and insert it into the PPT, as shown in the red circle in the figure below: 2 .Then, click the [Animation] function in the toolbar, and then click the style you like below, as shown in the red circle in the figure below: 3. Next, in the effect options, we can select

UniApp is a cross-platform application framework developed based on Vue.js. It can convert Vue code into native code for different platforms, such as mini programs, Apps, H5, etc. It provides a wealth of components and plug-ins to help developers quickly build feature-rich applications. This article will introduce how to use UniApp to realize the design and development methods of dynamic effects and animation display, and attach corresponding code examples. Animating with CSS UniApp supports transition and animat using CSS3

Using JavaScript functions to achieve user interaction and dynamic effects With the development of modern web design, user interaction and dynamic effects have become the key to attracting users' attention. As a commonly used scripting language, JavaScript has powerful functions and flexible features, and can achieve a variety of user interactions and dynamic effects. This article will introduce some common JavaScript functions and give specific code examples. Changing element style (style) can be easily changed through JavaScript functions

Easily master Canvas technology and create cool dynamic effects. Canvas is a powerful drawing technology in HTML5 that can achieve various cool dynamic effects. This article will take you step by step to learn the basic usage of Canvas and provide specific code examples so that you can easily master this technology. 1. Introduction to Canvas Canvas is an element in HTML5 and is used to draw graphics, animations and other content on web pages. By using various APIs, we can draw graphics on Canvas, add animations

Using JavaScript functions to achieve dynamic effects in user interfaces In modern web development, JavaScript is a very commonly used programming language. It can add dynamic effects to web pages and improve user experience. This article will introduce how to use JavaScript functions to achieve dynamic effects in the user interface and provide specific code examples. Show/Hide Elements In many cases, we want to be able to show or hide some elements based on user actions. You can achieve this using JavaScript functions

How does JavaScript achieve dynamic effects on web pages? JavaScript is a front-end development language that makes web pages more vivid and interactive. Through JavaScript, developers can implement dynamic effects on web pages, such as animation, event response, etc. The following will introduce some common JavaScript techniques to help you achieve dynamic effects on web pages. Changing element styles You can change the style of web page elements through JavaScript, such as changing color, size, position, etc. The following is a

Canvas technology requires specific code examples to achieve dynamic effects and explore a gorgeous visual world. In recent years, with the rapid development of the Internet and mobile devices, web design is no longer limited to traditional static display methods. More and more web designers are beginning to pursue dynamic and vivid page effects to attract users' attention. Canvas technology is a powerful tool to achieve this goal. This article will introduce the basic principles and common dynamic effects of Canvas technology, and provide specific code examples for reference. Canvas is H
