vue3 数据大屏项目开发中,会遇到各种各样的头部,今天整理的是vue3 数据大屏蓝色头部组件 - 基层治理平台。
效果截图
帧动画效果
通过ae实现从两侧到中间的扫光动画,使用帧动画生成。帧动画虽然增加了效果同时也增加了文件大小。
帧动画文件大小
帧动画图片文件数量74
帧动画图片文件总大小4M
组件内容
背景加中间标题
加帧动画效果实例
头部大小
1920 * 78
组件代码
/**
* @Author: 858834013@qq.com
* @Name: pageTop
* @Date: 2023年06月22日18:54:43
* @Desc:
*/
<template>
<div class="pageTop wow fadeInDown">
<!-- <sequence fileName="topbg31/topbg_" fileLength="74" IntervalTime="50"></sequence>-->
<div class="left"></div>
<div class="title">
<span>{{ title }}</span>
</div>
<div class="right"></div>
</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: 1690px 78px;
height: 78px;
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: 100%;
}
.right {
width: 30%;
position: relative;
height: 100%;
}
.title {
position: relative;
width: 40%;
height: 80px;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: nowrap;
flex-direction: row;
align-content: flex-start;
span {
font-size: 30px;
font-family: Source Han Sans CN;
font-weight: 800;
color: #FFFFFF;
background: linear-gradient(0deg, #00A8FF 0%, #00EAFF 30.322265625%, #00A8FF 66.3818359375%, #00EAFF 98.3642578125%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
}
}
</style>
更多数据可视化大屏顶部组件
源文件下载
文件包括头部效果代码 vue3 vite js nodejs 14
ae扫光动画源文件