42

我有一个带有几个引导进度条的页面。设置它们的值最初可以正常工作。虽然我希望进度条在用户打开页面时动画/转换到它们的特定状态。

当您单击其中一个栏时,此 JS 工作正常。在酒吧的“onload”事件中,我需要类似的东西。但是“onload”事件对 s 不可用

//animate progress bars
$('.progress .bar').on("click", function(event) {
  var me = $(this);
  perc = me.attr("data-percentage");
  me.css('width', perc+'%');
});

如何在页面加载时为页面上的所有进度条实现此行为?

4

5 回答 5

72

编辑

  • 类名在 v3.1.1 中从 更改barprogress-bar

HTML

<div class="container">
    <div class="progress progress-striped active">
        <div class="bar" style="width: 0%;"></div>
    </div>
</div>​

CSS

@import url('http://twitter.github.com/bootstrap/assets/css/bootstrap.css');

.container {
    margin-top: 30px;
    width: 400px;
}​

jQuery在下面和上面的小提琴中使用document.ready

$(document).ready(function(){

    var progress = setInterval(function() {
        var $bar = $('.bar');

        if ($bar.width()>=400) {
            clearInterval(progress);
            $('.progress').removeClass('active');
        } else {
            $bar.width($bar.width()+40);
        }
        $bar.text($bar.width()/4 + "%");
    }, 800);

});​

演示

JSFiddle

更新了 JSFiddle

于 2012-04-04T08:16:14.403 回答
27

虽然 Tats_innit 的回答对它有很好的触感,但我不得不做一些不同的事情,因为我在页面上有多个进度条。

这是我的解决方案:

JSfiddle:http: //jsfiddle.net/vacNJ/

HTML(示例):

<div class="progress progress-success">
<div class="bar" style="float: left; width: 0%; " data-percentage="60"></div>
</div>

<div class="progress progress-success">
<div class="bar" style="float: left; width: 0%; " data-percentage="50"></div>
</div>

<div class="progress progress-success">
<div class="bar" style="float: left; width: 0%; " data-percentage="40"></div>
</div>

​</p>

JavaScript:

setTimeout(function(){

    $('.progress .bar').each(function() {
        var me = $(this);
        var perc = me.attr("data-percentage");

        var current_perc = 0;

        var progress = setInterval(function() {
            if (current_perc>=perc) {
                clearInterval(progress);
            } else {
                current_perc +=1;
                me.css('width', (current_perc)+'%');
            }

            me.text((current_perc)+'%');

        }, 50);

    });

},300);

@Tats_innit:使用 setInterval() 动态重新计算进度是一个不错的解决方案,谢谢队友!;)

编辑:

我的一个朋友为自定义 twitter 引导进度条编写了一个不错的 jquery 插件。这是一个演示: http: //minddust.github.com/bootstrap-progressbar/

这是 Github 存储库: https ://github.com/minddust/bootstrap-progressbar

于 2012-04-04T10:32:31.023 回答
19

Bootstrap 使用 CSS3 过渡,因此当您通过 javascript / jQuery 设置 .bar 槽的宽度时,进度条会自动设置动画。

http://jsfiddle.net/3j5Je/ ..看到了吗?

于 2012-08-10T16:46:38.240 回答
10

为 ellabeauty 的回答做出贡献。您还可以使用此动态百分比值

$('.bar').css('width',  function(){ return ($(this).attr('data-percentage')+'%')});

并且可能会在你的 CSS 中添加自定义缓动

.bar {
 -webkit-transition: width 2.50s ease !important;
 -moz-transition: width 2.50s ease !important;
   -o-transition: width 2.50s ease !important;
      transition: width 2.50s ease !important;
 }
于 2013-07-04T10:21:37.953 回答
4

这是一个跨浏览器的纯 CSS 解决方案。希望能帮助到你!

演示

.progress .progress-bar {
    -moz-animation-name: animateBar;
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: ease-in;
    -moz-animation-duration: .4s;

    -webkit-animation-name: animateBar;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease-in;
    -webkit-animation-duration: .4s;

    animation-name: animateBar;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: .4s;
}

@-moz-keyframes animateBar {
    0% {-moz-transform: translateX(-100%);}
    100% {-moz-transform: translateX(0);}
}
@-webkit-keyframes animateBar {
    0% {-webkit-transform: translateX(-100%);}
    100% {-webkit-transform: translateX(0);}
}
@keyframes animateBar {
    0% {transform: translateX(-100%);}
    100% {transform: translateX(0);}
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>

<div class="container">
  
  <h3>Progress bar animation on load</h3>
  
  <div class="progress">
    <div class="progress-bar progress-bar-success" style="width: 75%;"></div>
  </div>
</div>

于 2016-10-24T12:29:24.533 回答