vue3 数据大屏黄色头部组件 - 社区综合管理平台

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

vue3 数据可视化大屏 项目开发中,会遇到各种各样的头部,今天整理的是 vue3 数据大屏黄色头部组件 - 社区综合管理平台。

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

效果截图

vue3 数据大屏黄色头部组件 - 社区综合管理平台

帧动画效果

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

帧动画文件大小

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

组件内容

背景加标题描述以及日期
加帧动画效果实例

图片大小

5758 * 164

组件代码

<template>
  <div class="header wow fadeInDown" id="header">
    <div class="headerLeft">
      <img src="./assets/icon_address.png" alt="">
      <span>深圳市福田区</span>
      <span>{{ date }}    星期{{ week }}    {{ time }}</span>
    </div>
    <div class="headerCenter">
      <span>{{ title }}</span>
    </div>
    <div class="headerRight">
      <img src="./assets/icon_duoyun.png" alt="">
      <span>多云   25℃~29℃</span>
      <span>PM 2.5 · 良好</span>
    </div>
    <sequence fileName="topbg20/topbg_" fileLength="74" IntervalTime="50"></sequence>
  </div>
</template>

<script>
import dayjs from 'dayjs'
import sequence from "@/components/sequence.vue";

export default {
  name: "header",
  data() {
    return {
      date: dayjs().format("YYYY/MM/DD"),
      time: dayjs().format("HH:mm:ss"),
    }
  },
  components: {sequence},
  computed: {
    week() {
      var datas = dayjs().day()
      var week = ['日', '一', '二', '三', '四', '五', '六']
      return week[datas]
    }
  },
  props: {
    title: {
      type: String,
      default() {
        return '社区综合管理平台';
      }
    }
  },
  watch: {},
  mounted() {
    var that = this;
    setInterval(function () {
      that.time = dayjs().format("HH:mm:ss");
    }, 1000);
  },
  methods: {},
}
</script>

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

  .headerLeft {
    margin-left: 83px;
    width: calc(30% - 83px);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: flex-start;

    img {
      width: 16px;
      height: 22px;
      margin-right: 10px;
    }

    span {
      font-size: 16px;
      font-family: MicrosoftYaHei;
      font-weight: 400;
      color: #FFFFFF;
      margin-right: 30px;
    }
  }

  .headerCenter {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: flex-start;

    span {
      font-size: 30px;
      font-family: PangMenZhengDao;
      font-weight: 400;
      color: #FFFFFF;

      background: linear-gradient(0deg, #EF9C00 0%, #FFFFFF 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
  }

  .headerRight {
    margin-right: 83px;
    width: calc(30% - 83px);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: flex-start;

    img {
      width: 24px;
      height: 21px;
      margin-right: 16px;
    }
    span {
      font-size: 16px;
      font-family: MicrosoftYaHei;
      font-weight: 400;
      color: #FFFFFF;
      margin-right: 30px;
    }
  }

}
</style>

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

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

源文件下载

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

ae扫光动画源文件

相关文件下载地址
此资源需支付 ¥2 后下载
支付宝购买扫右侧红包码购买更优惠,如无法下载请联系微信:17331886870
喜欢 (0)
vue3 数据大屏黄色头部组件 - 社区综合管理平台