例如:
1步 - >进度条宽度10% 2步 - >进度条宽度20%
依旧......
有没有人知道这样做的好方法,或者有人已经在angularjs中做过这个。
非常感谢您的回答
答案 0 :(得分:1)
对于进度条,我建议使用angularjs-bootstrap
http://angular-ui.github.io/bootstrap/#/progressbar
这里是他们的plunker的编辑
http://plnkr.co/edit/JNdarF9OUHcK3eRQlhCQ?p=preview
使用wizard.step模型作为progressbar.value
<div class="row">
<div class="col-sm-4"><progressbar value="wizard.step" max="10"></progressbar></div>
<div class="col-sm-4"><progressbar class="progress-striped" max="10" value="wizard.step" type="warning">{{myProgress*10}}%</progressbar></div>
<div class="col-sm-4"><progressbar class="progress-striped active" max="10" value="wizard.step" type="danger"><i>{{myProgress}} / 10</i></progressbar></div>
</div>
答案 1 :(得分:0)