问题:
今天在开发过程中遇到一个小需求,就是需要将进度条进行一个反转。我使用的使Element UI的 el-progress 组件做的进度条需求。
但是Element UI 的 el-progress 组件并没有直接提供从右到左的方向选项。所以现在就是在特定条件下需要将进度条进行一个反转。
使用模块:
<el-progress :stroke-width="10" :percentage="70"></el-progress>
解决方法
只需要给el-progress 组件增加一个CSS样式。
添加个==transform: scaleX(-1);==即可。
Html:
<el-progress class="custom-progress" :stroke-width="10" :percentage="70"></el-progress>
CSS:
.custom-progress {
transform: scaleX(-1);
}