博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
知识点1: 进度条随数据变化,并添加渐变样式
阅读量:5855 次
发布时间:2019-06-19

本文共 1304 字,大约阅读时间需要 4 分钟。

效果图:

dom:

//  进度条               
       //  数据容器

css:

.progress{      width: 50%;      position: absolute;      height: 10px;      background: linear-gradient(to right,rgb(31,107,169),rgb(167,132,252)); //线性渐变      border-radius: 5px;      left: 20%;      bottom: 22px;      transition: all 2s; //css动画          .point{              width: 10px;              height: 10px;              border-radius: 50%;              background: #fff;              border: 2px solid rgb(173,133,255);              box-sizing:content-box !important;              position: absolute;              top: -2px;              right: 0px;          }}
  • js
export default{    computed:{      styleObj1(){        return{          width:`${this.precents1*3.1}px` //宽度变化        }      }    }}
//接数据 loaddata() {        this.$http.indi.get('sl0057', {}, res => {          if (res.data.data && res.data.data.length > 0) {            try {              this.totalvalue1 = res.data.data[0].KPI_VALUE1              this.precents1 = res.data.data[0].KPI_VALUE2            } catch (error) {              console.log('**** indicator has error', error)            }          }        }) }

 

转载于:https://www.cnblogs.com/caoxueying2018/p/9871408.html

你可能感兴趣的文章
bat格式化时间
查看>>
Linux xargs命令
查看>>
Azure 中国篇之计算服务—两个订阅间的×××配置
查看>>
ECMAScript 6 Promises(下):谈谈 API(一)
查看>>
FastJson 格式化输出Double,保留精度
查看>>
CSS3 transition实现超酷动画效果
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
2015年读书单
查看>>
不是博眼球,上交会的人工智能产品有的已上岗有的正“裂变”
查看>>
容灾的相关知识
查看>>
linux查看端口占用情
查看>>
hive数字处理
查看>>
索引优化系列十三--分区表各类聚合优化玄机
查看>>
LDAP+SAMBA(SAMBA安装篇-实现PDC)
查看>>
关于H5游戏引擎有哪些,以下哪些H5作品全集是你认识的?
查看>>
jointjs和mxgraph比较
查看>>
reverse reprojection caching
查看>>
oracle 数据库归档模式的打开与关闭
查看>>
写博的感受
查看>>