vue3 可视化数据大屏 项目开发中,会遇到各种各样的头部,今天整理的是 vue3 可视化数据大屏蓝色头部组件 - 中国联通运营调度中心。
如果您需要设计属于自己的数据可视化大屏或开发数据可视化大屏 请联系我们微信:17331886870
效果截图
帧动画效果
通过ae实现从两侧到中间的扫光动画,使用帧动画生成。帧动画虽然增加了效果同时也增加了文件大小。
帧动画文件大小
帧动画图片文件数量74
帧动画图片文件总大小3M
组件内容
背景加标题
加帧动画效果实例
图片大小
1920 * 61
组件代码
/**
* @Author: 858834013@qq.com
* @Name: pageTop
* @Date: 2023年06月23日20:56:38
* @Desc:
*/
<template>
<div class="pageTop wow fadeInDown">
<div class="title">
<span>{{ title }}</span>
</div>
<sequence fileName="topbg25/topbg_" fileLength="74" IntervalTime="50"></sequence>
</div>
</template>
<script>
import sequence from "@/components/sequence.vue";
export default {
name: "pageTop",
components: {sequence},
data() {
return {}
},
props: {
title: {
type: String,
default() {
return '中国联通运营调度中心';
}
}
},
mounted() {
},
methods: {}
}
</script>
<style lang="scss" scoped>
.pageTop {
width: 100%;
//background: url("./assets/topbg.png") center top no-repeat;
//background-size: 1924px 61px;
height: 61px;
display: flex;
position: relative;
justify-content: center;
align-items: flex-start;
flex-wrap: nowrap;
flex-direction: row;
align-content: flex-start;
.title {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: nowrap;
flex-direction: row;
align-content: flex-start;
height: 100%;
position: relative;
z-index: 1;
span {
font-size: 24px;
font-family: PangMenZhengDao;
font-weight: normal;
color: #FFFFFF;
background: linear-gradient(0deg, #2AC0FF 0%, #FFFFFF 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
}
}
</style>
更多数据可视化大屏顶部组件
源文件下载
文件包括头部效果代码 vue3 vite js nodejs 14
ae扫光动画源文件