Home Web Front-end JS Tutorial jQuery loop animation and method of getting component size_jquery

jQuery loop animation and method of getting component size_jquery

May 16, 2016 pm 04:16 PM
jquery animation cycle method Obtain

The example in this article describes the method of jQuery loop animation and obtaining component size. Share it with everyone for your reference. The specific analysis is as follows:

1. Foreword

1. The animate() method in jQuery allows you to create custom animations.

The animate() method can operate almost all CSS properties, but when using animate(), all property names must be written in Camel notation. For example, paddingLeft must be used instead of padding-left, and marginRight must be used instead of margin- right, wait. Also, color animation is not included in the core jQuery library. If you need to generate color animations, you need to download the Color Animations plugin from jquery.com.

2. Through jQuery, it is easy to handle the size of elements and browser windows.
jQuery provides the following properties to obtain the dimensions of elements and browser windows.

2. Basic goals

As shown below:

Create two buttons in the web page, one button can switch the size of the component between the display and hidden states, and one button can switch the loop animation between the start and stop states

Simple JQ does not have the function of pausing and starting animation playback. You must download the jQuery Pause plug-in to complete it. In this example, the loop animation is only controlled through JavaScript, so each pause can only be interrupted when the loop body is completed once, and the function of pausing and starting at any random position cannot be achieved.

3. Production process

The following is all the code of the web page, and will be explained part by part later:

Copy code The code is as follows:
 
 
     
         
        JQ动画 
         
        <script>  <br> var interval;  <br> var i = 0;  <br> var j = 0;  <br> function divanimate() {  <br>     $(".d_class").animate( {left : " =100px"}, 500);  <br>     $(".d_class").animate( {top : " =100px" }, 500);  <br>     $(".d_class").animate( {left : "-=100px"}, 500);  <br>     $(".d_class").animate( {top : "-=100px" }, 500);  <br> }  <br> function cycle() {  <br>     divanimate();  <br>     interval = setInterval("divanimate()", 2000);  <br> }  <br> $(document).ready(function() {  <br>     $("#stop").click(function() {  <br>         i ;  <br>         if (i % 2 != 0)  <br>             cycle();  <br>         else  <br>             clearInterval(interval);  <br>     });  <br>     $("#show").click(function() {  <br>         j ;  <br>         if (j % 2 != 0) {  <br>             var txt = "";  <br>             txt = "<p align="center">高: " $("#d_id").height() "px</br>";  <br>             txt = "宽: " $("#d_id").width() "px</p>";  <br>             $("#d_id").html(txt);  <br>         } else {  <br>             var txt = "";  <br>             $("#d_id").html(txt);  <br>         }  <br>     });  <br> })  <br>     </script> 
     
 
     
         
         
       
            style="width: 100px; height: 100px; background-color: #000; position: absolute; top: 50px; color: #FFF; left:50px;">
 
     

1. part
Nothing special, just define two buttons on one layer. It is worth noting that position:absolute must be added to the layer’s style parameter value, otherwise this layer cannot be moved freely on the web page

Background-color is the background color of the layer. color is the font color in the layer.

You need to define two parameters, id and class, because JQ animation needs to be controlled through class, and JQ obtaining component size needs to be controlled through id.

At the same time, you need to pay attention to the position of the layer. Use left and top to place it, not margin-left and margin-top, because the JQ animation control code is controlled by left and top. If you use margin-left and margin-top to place them at the beginning of the animation, there will be a small amount of distortion.

2. part

That is the core code part:

Copy code The code is as follows:


          
                                                                                                                                                                                                                                                                                                                                                                                                                  ;                                                                                            /*This is equivalent to a pointer that records the loop status, used for clearInterval() below*/ var interval;
/*i is used to record the number of times the "Start/Stop Animation Loop" button is clicked. If this button is clicked an odd number of times, the loop will start, and if the button is clicked an even number, the loop will be terminated*/
var i = 0;
/*j is used to record the number of times the "Show/Hide Box Size" button is clicked. If the button is clicked an odd number of times, the size will be displayed, and if the button is clicked an even number of times, the size will be hidden*/
var j = 0;
/*Since there is no encapsulated toggle() method, we need to do this*/
function divanimate() {
/*Here you can only control the layer through its class value. The symbol in front of the class value is ., not #*/


$(".d_class").animate( {left : " =100px"}, 500);
$(".d_class").animate( {top : " =100px" }, 500);
$(".d_class").animate( {left : "-=100px"}, 500);
$(".d_class").animate( {top : "-=100px" }, 500);
}
function cycle() {
/*This function first executes the divanimate() function, and then executes divanimate() every 2000 milliseconds, that is, every 2 seconds. This interval is exactly the time it takes for an animation to be completed. If the loop is not interrupted, the loop animation can be executed seamlessly and perfectly without any interval. */
/*The first line must exist, otherwise every time you click the start button, you will have to wait 2 seconds before starting the animation*/
divanimate();
interval = setInterval("divanimate()", 2000);
}
/*$(document).ready(function(){}) means a function that is loaded as soon as the web page is loaded. The action classes of all buttons must be placed in it*/
$(document).ready(function() {
$("#stop").click(function() {
i ;
If (i % 2 != 0)
cycle();
            else  
/*The termination loop and the above start loop are functions of JavaScript. It is said that jquery is just an extension of JavaScript. */
                                                                                                    ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,; });
$("#show").click(function() {
                                                  If (j % 2 != 0) {
          var txt = "";
              txt = "

Height: " $("#d_id").height() "px
";
            txt = "Width: " $("#d_id").width() "px

";
/*This method can output text in the corresponding component tag*/
                $("#d_id").html(txt);
          } else {                                                           var txt = "";
                $("#d_id").html(txt);
                                                                                                              });
})


I hope this article will be helpful to everyone’s jQuery programming.

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

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

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to write a novel in the Tomato Free Novel app. Share the tutorial on how to write a novel in Tomato Novel. How to write a novel in the Tomato Free Novel app. Share the tutorial on how to write a novel in Tomato Novel. Mar 28, 2024 pm 12:50 PM

Tomato Novel is a very popular novel reading software. We often have new novels and comics to read in Tomato Novel. Every novel and comic is very interesting. Many friends also want to write novels. Earn pocket money and edit the content of the novel you want to write into text. So how do we write the novel in it? My friends don’t know, so let’s go to this site together. Let’s take some time to look at an introduction to how to write a novel. Share the Tomato novel tutorial on how to write a novel. 1. First open the Tomato free novel app on your mobile phone and click on Personal Center - Writer Center. 2. Jump to the Tomato Writer Assistant page - click on Create a new book at the end of the novel.

How to recover deleted contacts on WeChat (simple tutorial tells you how to recover deleted contacts) How to recover deleted contacts on WeChat (simple tutorial tells you how to recover deleted contacts) May 01, 2024 pm 12:01 PM

Unfortunately, people often delete certain contacts accidentally for some reasons. WeChat is a widely used social software. To help users solve this problem, this article will introduce how to retrieve deleted contacts in a simple way. 1. Understand the WeChat contact deletion mechanism. This provides us with the possibility to retrieve deleted contacts. The contact deletion mechanism in WeChat removes them from the address book, but does not delete them completely. 2. Use WeChat’s built-in “Contact Book Recovery” function. WeChat provides “Contact Book Recovery” to save time and energy. Users can quickly retrieve previously deleted contacts through this function. 3. Enter the WeChat settings page and click the lower right corner, open the WeChat application "Me" and click the settings icon in the upper right corner to enter the settings page.

How to set font size on mobile phone (easily adjust font size on mobile phone) How to set font size on mobile phone (easily adjust font size on mobile phone) May 07, 2024 pm 03:34 PM

Setting font size has become an important personalization requirement as mobile phones become an important tool in people's daily lives. In order to meet the needs of different users, this article will introduce how to improve the mobile phone use experience and adjust the font size of the mobile phone through simple operations. Why do you need to adjust the font size of your mobile phone - Adjusting the font size can make the text clearer and easier to read - Suitable for the reading needs of users of different ages - Convenient for users with poor vision to use the font size setting function of the mobile phone system - How to enter the system settings interface - In Find and enter the "Display" option in the settings interface - find the "Font Size" option and adjust it. Adjust the font size with a third-party application - download and install an application that supports font size adjustment - open the application and enter the relevant settings interface - according to the individual

The secret of hatching mobile dragon eggs is revealed (step by step to teach you how to successfully hatch mobile dragon eggs) The secret of hatching mobile dragon eggs is revealed (step by step to teach you how to successfully hatch mobile dragon eggs) May 04, 2024 pm 06:01 PM

Mobile games have become an integral part of people's lives with the development of technology. It has attracted the attention of many players with its cute dragon egg image and interesting hatching process, and one of the games that has attracted much attention is the mobile version of Dragon Egg. To help players better cultivate and grow their own dragons in the game, this article will introduce to you how to hatch dragon eggs in the mobile version. 1. Choose the appropriate type of dragon egg. Players need to carefully choose the type of dragon egg that they like and suit themselves, based on the different types of dragon egg attributes and abilities provided in the game. 2. Upgrade the level of the incubation machine. Players need to improve the level of the incubation machine by completing tasks and collecting props. The level of the incubation machine determines the hatching speed and hatching success rate. 3. Collect the resources required for hatching. Players need to be in the game

Quickly master: How to open two WeChat accounts on Huawei mobile phones revealed! Quickly master: How to open two WeChat accounts on Huawei mobile phones revealed! Mar 23, 2024 am 10:42 AM

In today's society, mobile phones have become an indispensable part of our lives. As an important tool for our daily communication, work, and life, WeChat is often used. However, it may be necessary to separate two WeChat accounts when handling different transactions, which requires the mobile phone to support logging in to two WeChat accounts at the same time. As a well-known domestic brand, Huawei mobile phones are used by many people. So what is the method to open two WeChat accounts on Huawei mobile phones? Let’s reveal the secret of this method. First of all, you need to use two WeChat accounts at the same time on your Huawei mobile phone. The easiest way is to

Where to get Google security code Where to get Google security code Mar 30, 2024 am 11:11 AM

Google Authenticator is a tool used to protect the security of user accounts, and its key is important information used to generate dynamic verification codes. If you forget the key of Google Authenticator and can only verify it through the security code, then the editor of this website will bring you a detailed introduction on where to get the Google security code. I hope it can help you. If you want to know more Users please continue reading below! First open the phone settings and enter the settings page. Scroll down the page and find Google. Go to the Google page and click on Google Account. Enter the account page and click View under the verification code. Enter your password or use your fingerprint to verify your identity. Obtain a Google security code and use the security code to verify your Google identity.

How to set up ppt animation to enter first and then exit How to set up ppt animation to enter first and then exit Mar 20, 2024 am 09:30 AM

We often use ppt in our daily work, so are you familiar with every operating function in ppt? For example: How to set animation effects in ppt, how to set switching effects, and what is the effect duration of each animation? Can each slide play automatically, enter and then exit the ppt animation, etc. In this issue, I will first share with you the specific steps of entering and then exiting the ppt animation. It is below. Friends, come and take a look. Look! 1. First, we open ppt on the computer, click outside the text box to select the text box (as shown in the red circle in the figure below). 2. Then, click [Animation] in the menu bar and select the [Erase] effect (as shown in the red circle in the figure). 3. Next, click [

The difference between Go language methods and functions and analysis of application scenarios The difference between Go language methods and functions and analysis of application scenarios Apr 04, 2024 am 09:24 AM

The difference between Go language methods and functions lies in their association with structures: methods are associated with structures and are used to operate structure data or methods; functions are independent of types and are used to perform general operations.

See all articles