您的位置:首页 > 移动开发 > 微信开发

微信小程序系列十三:自定义进度条

2018-09-03 15:03 197 查看

知识点:

     图层定位,颜色渐变

wxml:

[code]<view class='T_jindu'>
<view class='jindu2'></view>
<view class='jindu'></view>
</view>

css:

[code].jindu{
height: 10rpx;
background-color: #efefef
}
.jindu2{
width: 23%;
height: 10rpx;
background: -webkit-linear-gradient(left, #ffffff , #f05962);
background: -o-linear-gradient(right, #ffffff , #f05962);
background: -moz-linear-gradient(right, #ffffff , #f05962);
background: linear-gradient(to right, #ffffff , #f05962);
position: absolute
}

效果图:

阅读更多
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: