您的位置:首页 > 游戏 > 手游 > 简单实现进度条效果(vue2)

简单实现进度条效果(vue2)

2024/12/25 1:09:48 来源:https://blog.csdn.net/weixin_43811753/article/details/141353997  浏览:    关键词:简单实现进度条效果(vue2)

如果用echarts或者其他图表来写个进度条有点大材小用,所以直接简单html、js写一下就可以;

以下代码基于vue2,

部分代码来自国内直连GPT/Claude镜像站

在这里插入图片描述

<template><div class="progress-container"><div class="progress-item" v-for="(item, index) in progressData" :key="index"><div class="label">{{ item.label }}</div><div class="progress-bar"><div class="progress" :style="{ width: item.value + '%', backgroundColor: item.color }"><span class="value">{{ item.value }}%</span></div></div></div></div>
</template><script>
export default {name: 'ProgressChart',data() {return {progressData: [{ label: '当前值', value: 15, color: '#ff4757' },{ label: '设计值', value: 8, color: '#2ed573' }]}},
}
</script><style scoped>
.progress-container {background-color: #1e3a5f;padding: 10px;
}
.progress-item {display: flex;align-items: center;margin-bottom: 10px;
}
.label {width: 60px;color: #fff;font-size: 14px;
}
.progress-bar {flex-grow: 1;height: 20px;background-color: #2c4d6f;margin: 0 10px;position: relative;
}
.progress {height: 100%;transition: width 0.5s ease-in-out;position: relative;
}
.value {position: absolute;right: 5px;top: 50%;transform: translateY(-50%);color: #fff;font-size: 14px;
}
</style>

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com