数据可视化大屏 页面都会有一个特色的顶部,用来放标题时间以及菜单等效果,数据可视化大屏顶部组件 都整理出来方便复用。今天整理的来自数据大屏:vue3 数据可视化大屏蓝色顶部组件-智慧平台。
帧动画效果
通过ae实现从左侧到右侧的扫光动画,使用帧动画生成。帧动画虽然增加了效果同时也增加了文件大小。
帧动画文件大小
帧动画图片文件数量74
帧动画图片文件总大小 12.8M
组件内容
背景加中间标题
加帧动画效果实例
头部大小
1920 * 107
组件代码
<template>
<div class="pageTop">
<div class="pageTopLeft">
<span>{{ title }}</span>
</div>
<div class="pageTopRight">
<span>
{{ desc }}
</span>
</div>
</div>
</template>
<script>
export default {
props: {
title: {
type: String,
default() {
return '基层治理平台';
}
},
desc: {
type: String,
default() {
return '智慧';
}
},
}
}
</script>
<style lang="scss" scoped>
.pageTop {
background: url("./assets/topbg.png") no-repeat;
width: 100%;
height: 90px;
background-size: 100% 100%;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: nowrap;
flex-direction: row;
align-content: flex-start;
.pageTopLeft {
width: 50%;
display: flex;
justify-content: flex-start;
align-items: center;
flex-wrap: nowrap;
flex-direction: row;
align-content: flex-start;
span {
font-size: 39px;
font-family: YouSheBiaoTiHei;
font-weight: 400;
color: #FFFFFF;
line-height: 30px;
background: linear-gradient(0deg, #FFFFFF 0%, #C6E3FF 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-left: 30px;
}
}
.pageTopRight {
width: 400px;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: nowrap;
flex-direction: row;
align-content: flex-start;
font-size: 14px;
font-family: PingFang;
font-weight: 500;
color: #FBFFFF;
span {
font-size: 26px;
font-family: MicrosoftYaHei;
font-weight: bold;
color: #D6EEFF;
line-height: 30px;
background: linear-gradient(0deg, #FFFFFF 0%, #CEE6FF 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
}
}
</style>
更多数据可视化大屏顶部组件
源文件下载
文件包括头部效果代码 vue3 vite js nodejs 14
ae扫光动画源文件