vue el-progress進度條元件帶遮罩效果
阿新 • • 發佈:2021-08-14
最近用element UI自帶的進度條元件el-progress,來實現執行任務的百分比進度動態顯示,加了遮罩層。
template程式碼:
<divv-if="isShowProgress"class="popContainer"> <el-progress:percentage="percentage":text-inside="true":stroke-width="24":color="customColor"v-if="isShowProgress"style="top:30%;left:28%;width:44%"></el-progress> </div> css程式碼: /*遮罩層*/ .popContainer{ position:fixed; top:0; left:0; right:0; bottom:0; z-index:999999; background:rgba(0,0,0,0.6); }js主要程式碼: