vue3 数据大屏项目开发中,会遇到各种各样的头部,今天整理的是停车场监控看板大屏头部组件。
效果截图
帧动画效果
通过ae实现从两侧到中间的扫光动画,使用帧动画生成。帧动画虽然增加了效果同时也增加了文件大小。
帧动画文件大小
帧动画图片文件数量74
帧动画图片文件总大小 1.1M
组件内容
背景加中间标题
加帧动画效果实例
头部大小
1920 * 55
组件代码
/**
* @Author: 858834013@qq.com
* @Name: pageTop
* @Date: 2023年05月15日
* @Desc:
*/
<template>
<div class="pageTop wow fadeInDown">
<span>{{title}}</span>
</div>
</template>
<script>
import WOW from "wow.js";
export default {
name: "pageTop",
components: {},
props: {
title: {
type: String,
default() {
return '';
}
}
},
mounted() {
var wow = new WOW({
boxClass: "wow",
animateClass: "animated",
offset: 0,
mobile: true,
live: true,
callback: function (box) {
},
scrollContainer: null,
resetAnimation: true,
});
wow.init();
},
methods: {}
}
</script>
<style lang="scss" scoped>
.pageTop {
width: 100%;
background: url("./assets/topbg.png") center top no-repeat;
background-size: 1470px 55px;
height: 55px;
display: flex;
justify-content: center;
align-items: flex-start;
flex-wrap: nowrap;
flex-direction: row;
align-content: flex-start;
span {
font-size: 38px;
font-family: Alibaba;
font-weight: bold;
color: #EFF6FF;
background: linear-gradient(1deg, #D4E7EE 0%, #F9FEFF 99.0478515625%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
}
</style>
更多数据可视化大屏顶部组件
项目应用
源文件下载
文件包括头部效果代码 vue3 vite js nodejs 14
ae扫光动画源文件