简体   繁体   English

如何添加引导进度条?

[英]How to add a bootstrap progress bar?

Currently making an online catering planner which is a part of our thesis project. 目前正在制作在线餐饮计划者,这是我们论文项目的一部分。 And what I would like to do is to add a progress bar (bootstrap 3) to it. 我想做的是向它添加一个进度条(引导程序3)。 It is a series of forms in form of slider which is kinda based to this 基于此的滑块形式是一系列形式

Preview of the jQuery plugin I'm talking about: 我正在谈论的jQuery插件预览:

jFormslider by Harish U Warrier jFormslider,作者Harish U Warrier

A progress bar is used to show "the progress of a workflow or action." 进度条用于显示“工作流程或操作的进度”。
This is code from getbootstrap.com : 这是来自getbootstrap.com的代码:

<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
<span class="sr-only">60% Complete</span>
</div>
</div>

sr is screen reader (for accessibility) sr是屏幕阅读器(用于辅助功能)
You can use bootstrap colors: success, info, warning, etc. (progress-bar-info) 您可以使用引导程序颜色:成功,信息,警告等(进度栏信息)
Add stripes: class="progress-bar progress-bar-success progress-bar-striped" 添加条纹:class =“ progress-bar progress-bar-success progress-bar-striped”

Hope this helps. 希望这可以帮助。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM