我有个密码...
HTML语言
<div class="progress-bar">
<span class="progress-bar-fill" style="width: 30%"></span>
</div>
CSS
.progress-bar {
width: calc(100% - 6px);
height: 5px;
background: #e0e0e0;
padding: 3px;
border-radius: 3px;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, .2);
}
.progress-bar-fill {
display: block;
height: 5px;
background: #659cef;
border-radius: 3px;
transition: width 250ms ease-in-out;
}
它应该显示滑块的进度,以及当前图像将持续多长时间,直到下一个apperas...
如果图像每5秒改变一次,那么我希望在5秒内填充100%的栏......我在javascript和jQuery方面完全是菜鸟......
4条答案
按热度按时间rta7y2nd1#
你 可以 使用 它 。
transition
5 秒 。transition: width 5s ease-in-out;
第 一 个
希望 对 你 有 帮助 。
rdlzhqv92#
您可以让jQuery一次性设置转换声明。
要填写5s:
$(".progress-bar-fill").css({"width":"100%","transition":"5s"});
立即清空:
$(".progress-bar-fill").css({"width":"0%","transition":"none"});
envsm3lx3#
第一个
5lhxktic4#
或者您可以这样做:
HTML语言
CSS
巴别塔+ JSX
一切都可以在https://jsfiddle.net上调谐干杯!