象形图百分比

效果预览

效果实现

需要准备材料:一张底图,一张填充图。

html

<div class="pic">
    <div id="pic_fill" class="pic_fill">
        <span id="label" class="label">0%</span>
    </div>
</div>
<input id="ipt" type="number">
<button id="btn">确定</button>

css

.pic{
    width:500px;
    height:550px;
    position: relative;
    background: url("./pic/girl2_.png") no-repeat left bottom;
    background-size: 300px;
    left: 0;
    bottom: 0;
}
.pic_fill{
    width: 100%;
    background: url("./pic/girl2.png") no-repeat left bottom;
    background-size: 300px;
    position:absolute;
    left: 0;
    bottom: 0;
}
.label{
    width: 250px;
    height: 50px;
    border-bottom:2px solid #61deee;
    position: absolute;
    right: 0px;
    top:-52px;
    font-size: 42px;
    text-align: right;
    color: #61deee;
}

js

let picFill = document.getElementById('pic_fill')
let ipt = document.getElementById('ipt')
let btn = document.getElementById('btn')
let label = document.getElementById('label')

btn.onclick = function(){
    label.innerHTML = ipt.value + '%'
    picFill.style.height = ipt.value + '%'
    if(ipt.value > 90){
        label.style.top = 0
        label.style.borderTop="2px solid #61deee"
        label.style.borderBottom="none"
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值