1

我看到很多示例进度条显示进度条已填满。但是,我只想知道我如何才能让进步一步一步地反映进步。可以在这里看到我想要的一个很好的例子。来自其他页面的任何有用的代码或示例/演示都会很好。

谢谢!

4

1 回答 1

6

如果你喜欢 Buffalo 的,看看他们是怎么做的。

首先,他们定义了一个这样的 div:

<div id="progress">
    <div id="complete" class="s1">
        <div id="marker"></div>
    </div>
</div>

然后他们使用 CSS 根据进度(由 class="s1" 等控制)呈现 div。

/**
 * PROGRESS
 */
#progress,#complete {
    width: 520px;
    margin: 1px 0 19px;
    height: 32px;
    background:url(/img/backgrounds/progress.png);
    position:relative;
}
#complete {
    background-position: 0px 57px;
    margin-top: 0;
}
#complete #marker {
    position: absolute;
    top: 0;
    right: -26px;
    background:url(/img/backgrounds/markers.png);
    width: 26px;
    height: 32px;
}
#progress .s1 {
    width: 19px;
}
#progress .s2 {
    width:111px;
}
#progress .s3 {
    width:203px;
}
#progress .s4 {
    width:295px;
}
#progress .s5 {
    width:386px;
}
#progress .s6 {
    width:478px;
}
#progress .s2 #marker {
    background-position: -26px 0;
}
#progress .s3 #marker {
    background-position: -52px 0;
}
#progress .s4 #marker {
    background-position: -78px 0;
}
#progress .s5 #marker {
    background-position: -104px 0;
}
#progress .s6 #marker {
    background-position: -130px 0;
}

CSS 操作图像以显示所需的状态

在此处输入图像描述

在此处输入图像描述

于 2012-08-01T17:22:49.820 回答