HTML, CSS and jQuery: Make an animated loading progress bar
HTML, CSS and jQuery: Make a loading progress bar with animated effects
The loading progress bar is a common web page loading effect, which allows users to Clearly see the loading progress of the current page to improve user experience. In this article, we will use HTML, CSS and jQuery to create a loading progress bar with animation effects, and provide specific code examples.
HTML Structure
First, let’s create the basic structure of HTML. We need a container element that contains the progress bar and add an element inside it that displays the progress.
<!DOCTYPE html> <html> <head> <title>加载进度条</title> <link rel="stylesheet" href="style.css"> </head> <body> <div class="progress-container"> <div class="progress-bar"></div> </div> <script src="script.js"></script> </body> </html>
CSS Style
Next, we need to create a CSS style sheet to beautify the progress bar. We will use pseudo elements to create an animation effect on the progress bar.
body { background-color: #f1f1f1; } .progress-container { width: 100%; background-color: #ddd; } .progress-bar { width: 0%; height: 20px; background-color: #4CAF50; animation: progress-animation 2s linear; } /* 创建进度条动画 */ @keyframes progress-animation { 0% { width: 0%; } 100% { width: 100%; } }
jQuery code
Finally, we need to use jQuery to control the loading effect of the progress bar. We will use the animate()
method to change the width of the progress bar within a specified time.
$(document).ready(function(){ // 定义进度条的目标宽度(根据需要自行修改) var targetWidth = 80; // 获取进度条元素 var progressBar = $(".progress-bar"); // 使用animate()方法来改变进度条的宽度 progressBar.animate({ width: targetWidth + "%" }, 2000); });
In the above code, after the page is loaded, we use the animate()
method to gradually increase the width of the progress bar from 0% to the specified target width (here is 80%), the process lasts 2 seconds.
Save the above code as a script.js
file, and save the CSS style as a style.css
file, placed in the same directory as the HTML file.
Now, when you open an HTML file and preview the page in your browser, you will see a loading progress bar with animation.
To sum up, we used HTML, CSS and jQuery to successfully create a loading progress bar with animated effects. By mastering these basic knowledge, we can achieve more rich interactive effects in web pages and improve user experience. Hope this article helps you!
The above is the detailed content of HTML, CSS and jQuery: Make an animated loading progress bar. For more information, please follow other related articles on the PHP Chinese website!

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



The default style of the Bootstrap list can be removed with CSS override. Use more specific CSS rules and selectors, follow the "proximity principle" and "weight principle", overriding the Bootstrap default style. To avoid style conflicts, more targeted selectors can be used. If the override is unsuccessful, adjust the weight of the custom CSS. At the same time, pay attention to performance optimization, avoid overuse of !important, and write concise and efficient CSS code.

The file upload function can be implemented through Bootstrap. The steps are as follows: introduce Bootstrap CSS and JavaScript files; create file input fields; create file upload buttons; handle file uploads (using FormData to collect data and then send to the server); custom style (optional).

How to use the Bootstrap button? Introduce Bootstrap CSS to create button elements and add Bootstrap button class to add button text

To adjust the size of elements in Bootstrap, you can use the dimension class, which includes: adjusting width: .col-, .w-, .mw-adjust height: .h-, .min-h-, .max-h-

The size of a Bootstrap list depends on the size of the container that contains the list, not the list itself. Using Bootstrap's grid system or Flexbox can control the size of the container, thereby indirectly resizing the list items.

Nested lists in Bootstrap require the use of Bootstrap's grid system to control the style. First, use the outer layer <ul> and <li> to create a list, then wrap the inner layer list in <div class="row> and add <div class="col-md-6"> to the inner layer list to specify that the inner layer list occupies half the width of a row. In this way, the inner list can have the right one

There are several ways to insert images in Bootstrap: insert images directly, using the HTML img tag. With the Bootstrap image component, you can provide responsive images and more styles. Set the image size, use the img-fluid class to make the image adaptable. Set the border, using the img-bordered class. Set the rounded corners and use the img-rounded class. Set the shadow, use the shadow class. Resize and position the image, using CSS style. Using the background image, use the background-image CSS property.

To use Bootstrap to layout a website, you need to use a grid system to divide the page into containers, rows, and columns. First add the container, then add the rows in it, add the columns within the row, and finally add the content in the column. Bootstrap's responsive layout function automatically adjusts the layout according to breakpoints (xs, sm, md, lg, xl). Different layouts under different screen sizes can be achieved by using responsive classes.
