我正在 otree 中实现荷兰语和英语拍卖的模拟。
对于界面,我使用进度条来显示供应商获得的价格。
在英式拍卖中,价格每半秒增加一次,在荷兰式拍卖中,价格每半秒减少一次。
现在我想为供应商的成本添加一条垂直线,该线每轮都会变化。如何在进度条上添加垂直线?
<style>
#myProgress {
width: 100%;
background-color: #ddd;
}
#myCosts {
width: 100%;
background-color: #ddd;
}
#myBar {
width: 100%;
height: 30px;
background-color: #40bf80;
text-align: center;
line-height: 30px;
color: white;
}
#costLine{
width: 0%;
height: 30px;
background-color: #FF0000;
text-align: center;
line-height: 30px;
color: white;
}
.bg-info{
background-color: #ddd;
}
</style>
Your costs for this round are:
<div id="myCosts">
<div id="costLine">{{player.cost}}</div>
</div>
Current price is:
<div id="myProgress">
<div id="myBar">$200</div>
</div>
温温酱
相关分类