This article shares the specific code of jquery to realize the percentage scoring progress bar for your reference. The specific content is as follows 1. Look at the effect first 2. The code is as follows The jquery.lineProgressbar.js code is as follows (function($){ 'use strict'; $.fn.LineProgressbar = function(options){ var options = $.extend({ percentage : null, ShowProgressCount: true, duration: 1000, // Styling Options fillBackgroundColor: '#3498db', backgroundColor: '#EEEEEE', radius: '0px', height: '10px', width: '100%' },options); return this.each(function(index, el) { // Markup $(el).html('<div class="progressbar"><div class="proggress"></div></div><div class="percentCount"></div>'); var progressFill = $(el).find('.proggress'); var progressBar = $(el).find('.progressbar'); progressFill.css({ backgroundColor : options.fillBackgroundColor, height : options.height, borderRadius: options.radius }); progressBar.css({ width : options.width, backgroundColor : options.backgroundColor, borderRadius: options.radius }); // Progressing progressFill.animate( { width: options.percentage + "%" }, { step: function(x) { if (options.ShowProgressCount) { $(el).find(".percentCount").text("("+Math.round(x) + "分"+")"); } }, duration: options.duration } ); }); } })(jQuery); The jquery.lineProgressbar.css style code is as follows #progressbar1{ display: flex; height: 15px; } .progressbar { width: 50%; margin-top: 5px; position: relative; background: #182746 !important; border-radius: 6px !important; box-shadow: inset 0px 1px 1px rgba(0,0,0,.1); } .proggress{ height: 8px; width: 10px; background: linear-gradient(to right, rgb(13, 93, 176), rgb(32, 177, 223)) !important; border-radius: 6px !important; } .percentCount{ white-space: nowrap; margin-left: 10px; font-size: 14px; } This way you can realize the score bar. If it is a percentage, just change the points to %. Use it directly! ! ! The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: How to configure pseudo-static and client-adaptive Nginx
>>: Detailed explanation of the use of mysql explain (analysis index)
My recommendation Solution for coexistence of mul...
To achieve the following goals: Mysql database wi...
This article is original by 123WORDPRESS.COM Ligh...
MySQL Advanced SQL Statements use kgc; create tab...
Preface After reading the previous article about ...
This is a website I imitated when I was self-stud...
This article example shares the specific code for...
Table of contents 1. What is Javascript? 2. What ...
Prerequisite: The web developer plugin has been in...
1. Docker Network Mode When docker run creates a ...
Preface I recently encountered some problems at w...
Table of contents Start Docker Stop Docker Python...
This article uses examples to illustrate the prin...
MySQL download and installation (version 8.0.20) ...
Floating elements cause their parent elements to ...