vue3 可视化数据大屏蓝色头部组件 - 媒体数据可视化平台

数据可视化大屏素材 yekong 305℃

vue3 可视化数据大屏 项目开发中,会遇到各种各样的头部,今天整理的是vue3 可视化数据大屏蓝色头部组件 - 媒体数据可视化平台。

如果您需要设计属于自己的数据可视化大屏或开发数据可视化大屏 请联系我们微信:17331886870

效果截图

vue3 可视化数据大屏蓝色头部组件 - 媒体数据可视化平台

帧动画效果

通过ae实现从左侧到右侧的扫光动画,使用帧动画生成。帧动画虽然增加了效果同时也增加了文件大小。

帧动画文件大小

帧动画图片文件数量74
帧动画图片文件总大小1.2M

组件内容

背景加标题
加帧动画效果实例

图片大小

1920 * 82

组件代码

/**
* @Author: 858834013@qq.com
* @Name: pageTop
* @Date: 2023年06月23日20:43:36
* @Desc:
*/
<template>
  <div class="pageTop wow fadeInDown">
    <div class="pageTopLeft">
      <div class="title">
        <span>{{ title }}</span>
      </div>
    </div>
    <div class="pageTopRight">
      <span><img src="./assets/icon_tq.png" alt=""> 退出</span>
      <span>晴天 12℃-25℃</span>
      <span><img src="./assets/icon_date.png" alt=""> 2022.05.14</span>
    </div>
    <sequence fileName="topbg24/topbg_" fileLength="74" IntervalTime="50"></sequence>
  </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 '媒体数据可视化平台';
      }
    }
  },
  mounted() {

  },
  methods: {}
}
</script>

<style lang="scss" scoped>
.pageTop {
  width: 100%;
  //background: url("./assets/topbg.png") center top no-repeat;
  //background-size: 1894px 80px;
  height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  position: relative;

  align-content: flex-start;

  .pageTopLeft {
    width: 30%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: flex-start;
    position: relative;
    z-index: 1;

    .title {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: nowrap;
      flex-direction: row;
      align-content: flex-start;

      span {
        font-size: 26px;
        font-family: PangMenZhengDao;
        font-weight: 400;
        color: #99E5FF;
        text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.75);
        padding-top: 10px;
        margin-left: 30px;
      }
    }
  }

  .pageTopRight {
    width: 30%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: flex-start;
    padding-top: 10px;
    position: relative;
    z-index: 1;

    span {
      font-size: 14px;
      font-family: FangSong;
      font-weight: 400;
      color: #01B7F8;
      margin-right: 15px;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      flex-wrap: nowrap;
      flex-direction: row;
      align-content: flex-start;
    }

    img {
      width: 18px;
      height: 19px;
      margin-right: 5px;
    }
  }
}

</style>

更多数据可视化大屏顶部组件

vue3 数据可视化大屏顶部组件汇总

源文件下载

文件包括头部效果代码 vue3 vite js nodejs 14

ae扫光动画源文件

相关文件下载地址
此资源需支付 ¥2 后下载
支付宝购买扫右侧红包码购买更优惠,如无法下载请联系微信:17331886870
喜欢 (1)
vue3 可视化数据大屏蓝色头部组件 - 媒体数据可视化平台