您的位置:

进度条设计详解

一、进度条的基本概念

进度条是指在程序执行中,用一个矩形或线条表示程序进程的一种控件。主要用于提示用户当前正在执行的任务的进程和状态,以及预计完成时间。

进度条由填充、边框和背景组成。进度条的长度代表任务完成量的百分比。在进度条上,还会显示任务的名称、剩余时间和完成百分比等信息。

二、进度条的种类

常见的进度条分为水平进度条和垂直进度条,另外还有圆形进度条。

三、水平进度条的设计

1、基本样式的HTML代码如下所示:

<div class="progress-bar">
  <div class="progress">
    <div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuenow="75" 
    aria-valuemin="0" aria-valuemax="100" style="width: 75%;">
    </div>
  </div>
</div>

2、CSS样式代码如下所示:

.progress-bar {
  height: 25px;
  background-color: #f5f5f5;
  border-radius: 5px;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
  margin-top: 10px;
  margin-bottom: 10px;
}

.progress {
  height: 25px;
  margin-bottom: 10px;
  overflow: hidden;
  background-color: #ddd;
  border-radius: 5px;
}

.progress-bar-striped {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

3、JavaScript代码如下所示:

function progress(percent, $element) {
  var progressBarWidth = percent * $element.width() / 100;
  $element.find('.progress-bar').animate({ width: progressBarWidth }, 500);
}

progress(50, $('.progress'));

四、垂直进度条的设计

1、基本样式的HTML代码如下所示:

<div class="progress progress-vertical">
  <div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuenow="40"
  aria-valuemin="0" aria-valuemax="100" style="height: 40%;">
    <span class="sr-only">40% Complete (success)</span>
  </div>
</div>

2、CSS样式代码如下所示:

.progress-vertical {
  width: 20px;
  height: 200px;
  margin-left: 50px;
  margin-top: 50px;
  margin-bottom: 50px;
  transform: rotate(-90deg);
}

.progress-bar {
  width: 100%;
  background-color: #428bca;
}

3、JavaScript代码如下所示:

function progress(percent, $element) {
  var progressBarHeight = percent * $element.height() / 100;
  $element.find('.progress-bar').animate({ height: progressBarHeight }, 500);
}

progress(50, $('.progress-vertical'));

五、圆形进度条的设计

1、基本样式的HTML代码如下所示:

<div class="circular-progress-bar">
  <div class="background"></div>
  <div class="circle">
    <div class="mask full">
      <div class="fill"></div>
    </div>
    <div class="mask half">
      <div class="fill"></div>
      <div class="fill fix"></div>
    </div>
    <div class="shadow"></div>
  </div>
</div>

2、CSS样式代码如下所示:

.circular-progress-bar {
  width: 100px;
  height: 100px;
  position: relative;
  margin: 0 auto;
}

.background {
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #f2f2f2;
}

.circle {
  width: 100%;
  height: 100%;
  clip: rect(0, 100px, 100px, 50px);
  position: absolute;
}

.mask {
  width: 100%;
  height: 100%;
  clip: rect(0, 50px, 100px, 0);
  position: absolute;
}

.fill {
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #428bca;
}

.half .fill.fix {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%;
  clip: rect(0, 50px, 100px, 0);
}

.shadow {
  width: 100%;
  height: 100%;
  border-radius: 50px;
  box-shadow: 0px 0px 0px 3px #f2f2f2 inset;
}

3、JavaScript代码如下所示:

function progress(percent, $element) {
  var degrees = percent / 100 * 360;
  $element.find('.fill').css({ 'transform': 'rotate(' + degrees + 'deg)' });
}

progress(50, $('.circular-progress-bar'));

六、总结

在设计进度条时,需要考虑任务的复杂程度、数据的更新速度、用户的操作体验等多个因素。良好的进度条设计可以提升用户的体验感,让用户更好地理解任务的执行进程和状态。

js高级程序设计笔记14(js高级程序设计笔记14页)

本文目录一览: 1、JavaScript高级程序设计 该怎么看 2、JavaScript学习笔记之数组基本操作示例 3、JS中有关sort以及return的问题 JavaScript高级程序设计 该怎

2023-12-08
数据库的笔记mysql,数据库管理系统笔记

2022-11-24
java学习笔记(java初学笔记)

2022-11-14
印象笔记记录java学习(Java成长笔记)

2022-11-12
java方法整理笔记(java总结)

2022-11-08
jsp程序开发学习笔记2,jsp程序设计题库

本文目录一览: 1、《JSP&Servlet学习笔记》pdf下载在线阅读,求百度网盘云资源 2、林信良编著jsp&servlet学习笔记第2版课后答案吗 3、jsp有没有快速掌握的办法呀? 4、要学J

2023-12-08
发篇java复习笔记(java课程笔记)

2022-11-09
Mac笔记:在日常生活中高效实用的笔记工具

2023-05-18
python基础学习整理笔记,Python课堂笔记

2022-11-21
java基础知识学习笔记一,Java基础笔记

2022-11-21
java笔记,尚硅谷java笔记

2022-12-01
javascript简要笔记,JavaScript读书笔记

2022-11-17
进度条设计详解

2023-05-22
java笔记,大学java笔记

2022-11-28
java客户端学习笔记(java开发笔记)

2022-11-14
5000元笔记本电脑

随着科技的不断发展,笔记本电脑已经成为了现代人生活中必不可少的工具。 随着科技的不断发展,笔记本电脑已经成为人们生活中必不可少的工具。在如今数字化时代的到来,人们对信息的需求也越来越高了,而笔记本作为

2023-12-08
python课堂整理32(python笔记全)

2022-11-12
python的用法笔记本(笔记本学python)

2022-11-16
c语言笔记讲解,c语言程序笔记

2022-11-23
重学java笔记,java笔记总结

2022-11-23