gpt4 book ai didi

javascript - 使用 CSS3 反转进度条

转载 作者:太空狗 更新时间:2023-10-29 12:27:10 25 4
gpt4 key购买 nike

我有这个EXAMPLE .

我想将进度条反转 180 度以从右向左前进。要获得这样的东西:

enter image description here

我尝试更改transition 属性但没有结果。

代码:

.progress-bar span {
display: inline-block;
height: 100%;
background-color: #777;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;
-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;
box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;
transition: width .4s ease-in-out;
}

最佳答案

让进度条 block 化,只是向右浮动:

.progress-bar span {
display: block;
float: right;
...
}

DEMO

关于javascript - 使用 CSS3 反转进度条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16017509/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com