1. Demand
As shown below
The key point is to implement the progress bar.
2. Analysis
In the article "Add and delete tags in html5", it was mentioned that html5 has added a new progress tag. But there are definitely compatibility issues. The production environment is not suitable, so the implementation must be simulated.
Principle: Dynamically set the width value of the sub-element of . 1. Simple prototype 2. Implementation process of voting progress bar Add a width and background color to span to create a progress bar effect. This step is implemented using js. The second step is to set the span width with js Effect: The third step, js sets the background color of span Final effect: The above is the special effect of the colored progress bar, which is especially suitable for voting. The effect is very obvious. I hope it will be helpful to everyone's learning and you will like this colored progress bar.
Assume there is only one progress bar, as shown below. We only need to know the width of the p element and the percentage of the span element. Multiply them to get the width of the span. When the browser loads, the width of the span can be dynamically set to achieve the effect of the progress bar.
<style>
.long{width:100px;border:1px solid #7f7f7f;height:14px;background-color:#d6d6d6;}
.short{float:left;height:14px;background-color:#0FF;}
</style>
<body>
<P class="long"><span class="short"></span></P>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
var percent=0.5;
var longWidth=100;
var shortWidth=percent*longWidth;
$(".short").animate({width:shortWidth+"px"},'slow');
</script>
</body>
Step 1: The structure is as follows
<meta charset="utf-8">
<style>
/*样式重置*/
ul,h4,p{margin:0;padding:0;}
/*清除浮动*/
.clearfix:after{visibility:hidden;display:block;font-size:0;content:" ";clear:both;height:0;}
body { font: 12px/1.5 arial, 宋体; }
html, body { color: #333333; }
/*投票css*/
.vote-box-list{border:1px solid red;position:absolute;}
.vote-box-list li{list-style:none;margin:10px 0;}
.vote-item-wrap h4,.vote-item-wrap .vnum{float:left;font-size:14px;font-weight:normal;line-height:16px;}
.vote-item-wrap p{float:left;height:14px;width:200px;border:1px solid #E2E2E2;background-color:#EFEFEF;margin:0 10px;}
.vote-item-wrap p span{float:left;height:14px;/*width:30px;background-color:#c2f263;*/}
</style>
<ul class="vote-box-list clearfix" id="appVoteBox">
<li class="vl-item" id="voteItem0">
<div class="vote-item-wrap clearfix">
<h4 id="A">A:</h4>
<p class="litem"><span></span></p>
<span class="vnum">79(2%)</span>
</div>
</li>
<li class="vl-item" id="voteItem1" >
<div class="vote-item-wrap clearfix">
<h4 id="B">B:</h4>
<p class="litem"><span></span></p>
<span class="vnum">1986(61%)</span>
</div>
</li>
<li class="vl-item" id="voteItem2">
<div class="vote-item-wrap clearfix">
<h4 id="C">C:</h4>
<p class="litem"><span></span></p>
<span class="vnum">1153(36%)</span>
</div>
</li>
<li class="vl-item" id="voteItem3" >
<div class="vote-item-wrap clearfix">
<h4 id="D">D:</h4>
<p class="litem"><span></span></p>
<span class="vnum">415(13%)</span>
</div>
</li>
<li class="vl-item" id="voteItem4" >
<div class="vote-item-wrap clearfix">
<h4 id="E">E:</h4>
<p class="litem"><span></span></p>
<span class="vnum">89(3%)</span>
</div>
</li>
</ul>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
var Vote={};
Vote.ListShow=(function(){
var longWidth;
var percentArr=[];
var shortWidth=[];
var spanArr=[];
/*初始化*/
function init(o){
voteId=o.id;
longWidth=o.width;
percentArr=o.percent;
shortWidth=calWidth();
spanArr=findSpans();
}
/*根据百分比计每个算span的实际宽度*/
function calWidth(){
var arr=[];
for(var i=0;i<percentArr.length;i++){
var tempLength=percentArr[i]*longWidth;
arr.push(tempLength);
}
return arr;
}
/*将全部span存为一个数组*/
function findSpans(){
var litems=$("#"+voteId).find(".litem");
var arr=[]
for(var i=0;i<litems.length;i++){
arr.push(litems[i].children[0]);
}
return arr;
}
/*每个span元素设置宽度*/
function setWidth(){
for(i=0;i<percentArr.length;i++){
$(spanArr[i]).animate({width:shortWidth[i]+"px"},'slow');
$(spanArr[i]).css({'background-color':"#c2f263"});
}
}
return {init:init,set:setWidth};
})();
/*调用*/
Vote.ListShow.init(
{
id:'appVoteBox',
width:200-2 ,
percent:[0.02,0.61,0.36,0.13,0.3],
});
Vote.ListShow.set();
</script>
The background color in the second step is set to the same as below.
$(spanArr[i]).css({'background-color':"#c2f263"});
现在随机生成背景色,做一个彩色的进度条。
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
var Vote={};
Vote.ListShow=(function(){
var longWidth;
var percentArr=[];
var shortWidth=[];
var spanArr=[];
var colorArr=[];
/*初始化*/
function init(o){
voteId=o.id;
longWidth=o.width;
percentArr=o.percent;
shortWidth=calWidth();
spanArr=findSpans();
colorArr=genColor();
}
/*根据百分比计每个算span的实际宽度*/
function calWidth(){
var arr=[];
for(var i=0;i<percentArr.length;i++){
var tempLength=percentArr[i]*longWidth;
arr.push(tempLength);
}
return arr;
}
/*将全部span存为一个数组*/
function findSpans(){
var litems=$("#"+voteId).find(".litem");
var arr=[]
for(var i=0;i<litems.length;i++){
arr.push(litems[i].children[0]);
}
return arr;
}
/*o是颜色数组,随机选择length种颜色返回*/
function genColor() {
var o = [];
var n = ["#5dbc5b", "#6c81b6", "#9eb5f0", "#a5cbd6", "#aee7f8", "#c2f263", "#d843b3", "#d8e929", "#e58652", "#e7ab6d", "#ee335f", "#fbe096", "#ffc535"]; //彩色进度条
var colorsArr = n.slice();
for (var i = 0;i < percentArr.length; i++){
//Math.random()返回0.0 ~ 1.0 之间的一个伪随机数。
//Math.floor()向下取整
var k = Math.floor(Math.random()* colorsArr.length);
o.push(colorsArr[k]);
//取完一种颜色后就从颜色数组中删除
colorsArr.splice(k, 1);
if (colorsArr.length == 0){
colorsArr = n.slice()}
}
return o;
}
/*每个span元素设置宽度*/
function setWidth(){
for(i=0;i<percentArr.length;i++){
$(spanArr[i]).animate({width:shortWidth[i]+"px"},'slow');
$(spanArr[i]).css({'background-color':colorArr[i]});
}
}
return {init:init,set:setWidth};
})();
/*调用*/
Vote.ListShow.init(
{
id:'appVoteBox',
width:200-2 ,
percent:[0.02,0.61,0.36,0.13,0.3],
});
Vote.ListShow.set();
</script>

实现方法:1、用“$("img").delay(毫秒数).fadeOut()”语句,delay()设置延迟秒数;2、用“setTimeout(function(){ $("img").hide(); },毫秒值);”语句,通过定时器来延迟。

修改方法:1、用css()设置新样式,语法“$(元素).css("min-height","新值")”;2、用attr(),通过设置style属性来添加新样式,语法“$(元素).attr("style","min-height:新值")”。

区别:1、axios是一个异步请求框架,用于封装底层的XMLHttpRequest,而jquery是一个JavaScript库,只是顺便封装了dom操作;2、axios是基于承诺对象的,可以用承诺对象中的方法,而jquery不基于承诺对象。

增加元素的方法:1、用append(),语法“$("body").append(新元素)”,可向body内部的末尾处增加元素;2、用prepend(),语法“$("body").prepend(新元素)”,可向body内部的开始处增加元素。

删除方法:1、用empty(),语法“$("div").empty();”,可删除所有子节点和内容;2、用children()和remove(),语法“$("div").children().remove();”,只删除子元素,不删除内容。

在jquery中,apply()方法用于改变this指向,使用另一个对象替换当前对象,是应用某一对象的一个方法,语法为“apply(thisobj,[argarray])”;参数argarray表示的是以数组的形式进行传递。

去掉方法:1、用“$(selector).removeAttr("readonly")”语句删除readonly属性;2、用“$(selector).attr("readonly",false)”将readonly属性的值设置为false。

on()方法有4个参数:1、第一个参数不可省略,规定要从被选元素添加的一个或多个事件或命名空间;2、第二个参数可省略,规定元素的事件处理程序;3、第三个参数可省略,规定传递到函数的额外数据;4、第四个参数可省略,规定当事件发生时运行的函数。


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

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.
