An article to help you understand jQuery animation

An article to help you understand jQuery animation
jQuery provides some default animations to control the display and hiding of elements: show() hide()
	Control the transparency of an element fadeIn() fadeOut()
	Control the height of an element slideUp() slideDown()
	Custom animation animate()

1. Control the display and hiding of elements show() hide()

grammar:

 $("selector").show([speed],[callback]);

Reference description:

Parameter 1 : speed, optional, for example: 1000 milliseconds, 1 second, fast, slow, normal

Parameter 2 : callback function, optional function to be executed after the show or hide function is executed

$(function () {
			$(".nav-ul li").on({"mouseover":function () {
					$(this).css("background","pink")
				},"mouseout":function () {
					$(this).css("background","#ff2832")
				}});
			$(".menu-btn").hover(function () {
				$(this).next().show("fast")
			},function () {
				$(this).next().hide("slow")
			})
		})

2. Control the transparency of elements fadeIn() fadeOut()

grammar:

    $("selector").fadeIn([speed],[callback]);
    $("selector").fadeOut([speed],[callback]);

Reference description:

Parameter 1 : speed, optional, default is 0, for example: 1000 milliseconds, etc., 1 second fast slow normal

Parameter 2 : callback function, optional. The function to be executed after fadeIn or fadeOut is executed.

$(function () {
		$("input[name='fadein_btn']").click(function () {
			$("img:eq(0)").fadeIn(500,function () {
				alert("fade in successfully")
			})
		})
		$("input[name='fadeout_btn']").click(function () {
			$("img:eq(0)").fadeOut(1000,function () {
				alert("fade out successfully")
			})
		})
	})

3: Control the height of the element slideUp() slideDown()

slideDown() makes the element gradually extend and display

slideUp() makes the element gradually shorten until it is hidden

grammar:

    $("selector").slideUp([speed],[callback]);
    $("selector").slideDown([speed],[callback]);

Reference description:

Parameter 1: speed, optional, default is 0, for example: 1000 milliseconds, etc., 1 second fast slow normal

Parameter 2: callback function, optional. The function to be executed after slideUp or slideDown is executed.

Summarize

This article ends here. I hope it can be helpful to you. I also hope that you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • jQuery implements ad display and hide animation
  • jQuery animation operation complete example analysis
  • JQuery animate animation application example
  • Detailed explanation of JQuery basic animation operations
  • [jQuery] Detailed explanation of events and animations

<<:  Use CSS3 background control properties + color transition to achieve gradient effect

>>:  Have you really learned MySQL connection query?

Recommend

Detailed explanation of grep and egrep commands in Linux

rep / egrep Syntax: grep [-cinvABC] 'word'...

15 Linux Command Aliases That Will Save You Time

Preface In the process of managing and maintainin...

In IIS 7.5, HTML supports the include function like SHTML (add module mapping)

When I first started, I found a lot of errors. In...

A brief introduction to the usage of decimal type in MySQL

The floating-point types supported in MySQL are F...

Implementing timed page refresh or redirect based on meta

Use meta to implement timed refresh or jump of th...

Vue implements automatic jump to login page when token expires

The project was tested these days, and the tester...

JS thoroughly understands GMT and UTC time zones

Table of contents Preface 1. GMT What is GMT Hist...

A quick guide to MySQL indexes

The establishment of MySQL index is very importan...

Implementation of MySQL multi-version concurrency control MVCC

Transaction isolation level settings set global t...

CSS 3.0 text hover jump special effects code

Here is a text hovering and jumping effect implem...

Two usages of iFrame tags in HTML

I have been working on a project recently - Budou...

Detailed example of creating and deleting tables in MySQL

The table creation command requires: The name of...

Do you know how to use vue-cropper to crop pictures in vue?

Table of contents 1. Installation: 2. Use: 3. Bui...

Solve the problem of using swiper plug-in in vue

Since I used this plugin when writing a demo and ...

Summary of basic SQL statements in MySQL database

This article uses examples to describe the basic ...