vue3 可视化数据大屏 项目开发中,会遇到各种各样的头部,今天整理的是 vue3 数据可视化大屏绿色头部组件 - 保障数据监控中心。
如果您需要设计属于自己的数据可视化大屏或开发数据可视化大屏 请联系我们微信:17331886870
效果截图
帧动画效果
通过ae实现从两侧到中间的扫光动画,使用帧动画生成。帧动画虽然增加了效果同时也增加了文件大小。
## 帧动画文件大小
帧动画图片文件数量74
帧动画图片文件总大小834k
组件内容
背景加标题
加帧动画效果实例
图片大小
1920 * 71
效果
组件分为两种,可以自行选择使用哪一种:
一种静态图片的,无扫光动画,特点文件少,占用带宽小
一种是帧动画版,有扫光动画,响应的带宽占用也会有所提升
组件代码
/**
* @Author: 858834013@qq.com
* @Name: pageTop
* @Date: 2023年06月26日14:37:57
* @Desc:
*/
<template>
<div class="pageTop">
<sequence fileName="topbg35/topbg_" fileLength="74" IntervalTime="50"></sequence>
<div class="left">
<p><span>{{ date }}</span> <span>{{ time }}</span></p>
</div>
<div class="title">
<span>{{ title }}</span>
</div>
<div class="right"></div>
</div>
</template>
<script>
import dayjs from 'dayjs'
import sequence from "@/components/sequence.vue";
export default {
name: "pageTop",
components: {sequence},
data() {
return {
date: dayjs().format("YYYY-MM-DD"),
time: dayjs().format("HH:mm:ss"),
}
},
props: {
title: {
type: String,
default() {
return '应急保障数据监控中心';
}
}
},
computed: {
week() {
var datas = dayjs().day()
var week = ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六']
return week[datas]
}
},
mounted() {
var that = this;
setInterval(function () {
that.time = dayjs().format("HH:mm:ss");
}, 1000);
},
methods: {}
}
</script>
<style lang="scss" scoped>
.pageTop {
width: 100%;
//background: url("./assets/topbg.png") center top no-repeat;
//background-size: 1785px 71px;
height: 71px;
display: flex;
justify-content: space-between;
align-items: flex-start;
flex-wrap: nowrap;
flex-direction: row;
align-content: flex-start;
position: relative;
.left {
width: 30%;
position: relative;
height: 25px;
margin-top: 25px;
background: url("./assets/leftbg.png");
background-size: 100% 100%;
display: flex;
justify-content: flex-start;
align-items: center;
flex-wrap: nowrap;
flex-direction: row;
align-content: flex-start;
p {
font-size: 15px;
font-family: MicrosoftYaHei;
font-weight: 400;
color: #FFFFFF;
background: linear-gradient(0deg, #7DFFAF 0%, #FFFFFF 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-left: 30px;
span {
margin-right: 10px;
}
}
}
.right {
width: 30%;
position: relative;
height: 25px;
margin-top: 25px;
background: url("./assets/rightbg.png");
background-size: 100% 100%;
}
.title {
position: relative;
width: 40%;
height: 40px;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: nowrap;
flex-direction: row;
align-content: flex-start;
z-index: 1;
span {
font-size: 28px;
font-family: douyu;
font-weight: 400;
background: linear-gradient(0deg, #7DFFAF 0%, #C8FFDD 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
}
}
</style>
字体
更多数据可视化大屏顶部组件
源文件下载
文件包括头部效果代码 vue3 vite js nodejs 14
ae扫光动画源文件