当前位置:   article > 正文

vue3+DataV+Echarts搭建数据大屏模板(建议收藏)_vue大屏可视化模板

vue大屏可视化模板

一.实现效果:

Vue3-Vite-Ts数据大屏

二.vue3项目构建:

前言:随着vue2官宣年底停止维护不在提供解决问题的帮助后,vue3+ts+vite大家已经都开始用了,最近也在学习,并结合DataV和Echarts搭建了一个数据大屏,多端自适应,拿来即用!

1.使用vite构建一个vue3项目

npm create vite@latest
  • 1

在这里插入图片描述

Project name:你的项目名;
Select a framework:框架选择Vue;
Select a variant:语言选择TypeSceript

cd vite-project
npm install
npm run dev

这样你的项目就创建好了

三.安装DataV

这里因为我们用的是Vue3+TS+Vite,所以推荐大家使用下边这个:

DataV

  • 安装,此处使用pnpm工具,也可以yarn,npm等:
pnpm install @kjgl77/datav-vue3
  • 1
  • 全局引入:

// main.ts中全局引入
import { createApp } from ‘vue’
import DataVVue3 from ‘@kjgl77/datav-vue3’
const app = createApp(App)
app.use(DataVVue3)
app.mount(‘#app’)

引入后在.vue文件中可以直接使用:

<dv-decoration-1 :color="['pink','yellow']" style="width:200px;height:50px;" />
  • 1
  • 局部引入:
<!--.vue文件的script中import部分组件 -->
<script lang="ts" setup>
import { Decoration1, Decoration2 } from '@kjgl77/datav-vue3'
</script>
<template>
  <!-- 引入之后就可以在vue的template中直接使用 -->
  <decoration-1 :color="['pink','yellow']" style="width:200px;height:50px;" />
  <decoration-2 :reverse="true" style="width:5px;height:150px;" />
</template>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

安装并配置好以后就可以使用它里边的一些组件了,有炫酷的动态边框、装饰以及一些基本的图表等等,并且有详细的配置项文档可以帮助我们更快地去做排版。本文中展示效果的边框就是使用的DataV中的组件构建的。

四.安装Echarts

npm i echarts -S  或 npm install echarts --save
  • 1
  • 在页面中使用:
  import * as echarts from 'echarts';
  import {init, EChartsOption} from 'echarts';
  • 1
  • 2
  • Echarts中文社区网址:

Echarts中文社区

里边有好多炫酷的各类图表,大家可以更具自己业务需求去配置。

五.实现代码:

  • 代码中ifrname引入的是canvas实现的粒子效果,大家需要的话可以翻看我的相关博文;
  • 需要图片的话留或者私信我。
<template>
  <div class="screen-bg" v-loading="loading">
    <iframe frameborder="0" src="src/assets/js/index.html" style="width: 100%; height: 100%;z-index: -10"></iframe>
    <div class="container" ref="dataScreenRef">
      <div class="header">
        <div class="date">{{currentDate + '&nbsp; &nbsp; &nbsp; ' + str}}</div>
        <div class="title">BOOL数据可视化大屏</div>
        <div class="light" @click="backIndex">
          <div></div>
          <div></div>
          <div></div>
          <div></div>
          X
        </div>
      </div>
      <div class="body">
        <div class="left" style="flex: 0 1 30%">
          <dv-border-box1 style="width: 100%;height: 50%;overflow: hidden;" ref="borderRef">
            <dv-scroll-ranking-board :config="config" style="width:90%;height:90%;margin: 0 auto" />
          </dv-border-box1>
          <dv-border-box1 style="width: 100%;height: 50%" ref="borderRef">
            <div id="echart6" style="width: 100%;height: 90%;position: absolute"></div>
          </dv-border-box1>
        </div>
        <div class="central" style="flex: 0 1 60%">
          <dv-border-box1 ref="borderRef">
            <div class="mapBox">
              <img class="imgItem1" src="../../assets/mapImg/lbx.png">
              <img class="imgItem2" src="../../assets/mapImg/jt.png" alt="">
              <img class="imgItem3" src="../../assets/mapImg/map.png" alt="">
              <div style="width: 100%;height: 80%;position: absolute" id="map"/>
            </div>
          </dv-border-box1>
        </div>
        <div class="right" style="flex: 0 1 30%;display: flex;flex-direction: column;justify-content: space-between">
          <dv-border-box1 ref="borderRef" style="width: 100%;height: 33%;overflow: hidden">
            <div id="echart5" style="width: 90%;height: 85%;margin: 0 auto"></div>
          </dv-border-box1>
          <dv-border-box1 ref="borderRef" style="width: 100%;height: 33%;overflow: hidden">
            <div id="echart4" style="width: 90%;height: 85%;margin: 0 auto"></div>
          </dv-border-box1>
          <dv-border-box1 ref="borderRef" style="width: 100%;height: 33%;overflow: hidden">
            <div id="echart1" style="width: 90%;height: 85%;margin: 0 auto"></div>
          </dv-border-box1>
        </div>
      </div>
    </div>
  </div>
</template>

<script setup lang='ts'>
  import {onMounted, ref, reactive} from 'vue';
  import {useRouter} from "vue-router";
  import * as echarts from 'echarts';
  import {init, EChartsOption} from 'echarts';
  import mapJson from './modules/china.json'

  // console.log(mapJson)
  // 获取当前时间
  const currentDate = ref('');
  const a = ["日", "一", "二", "三", "四", "五", "六"];
  const week = ref(null);
  const str = ref('');
  const timeInterval = setInterval(() => {
    currentDate.value = new Date().toLocaleString()
    week.value = new Date().getDay();
    str.value = "今天是星期" + a[week.value]
  }, 1000)

  const loading = ref(true)
  // 获取自适应的盒子
  const dataScreenRef = ref<HTMLElement | null>(null);

  // 地图数据
  const config = reactive({
    data: [
      {
        name: '北京市',
        value: 55,
      },
      {
        name: '天津市',
        value: 120,
      },
      {
        name: '河北省',
        value: 78,
      },
      {
        name: '河南省',
        value: 66,
      },
      {
        name: '山西省',
        value: 80,
      },
      {
        name: '上海市',
        value: 45,
      },
      {
        name: '山东省',
        value: 29,
      },
    ],
    unit: '万辆',
  })

  onMounted(() => {
    // 初始化时为外层盒子加上缩放属性,防止刷新界面时就已经缩放
    if (dataScreenRef.value) {
      dataScreenRef.value.style.transform = `scale(${getScale()}) translate(-50%, -50%)`;
      dataScreenRef.value.style.width = `1920px`;
      dataScreenRef.value.style.height = `1080px`;
    }
    // 初始化echarts
    initChart();
    initChart2();
    initChart3();
    initChart4();
    initChart5();
    // 为浏览器绑定事件
    window.addEventListener("resize", resize);
  });

  // 根据浏览器大小推断缩放比例
  const getScale = (width = 1920, height = 1080) => {
    let ww = window.innerWidth / width;
    let wh = window.innerHeight / height;
    return ww < wh ? ww : wh;
  };

  // 监听浏览器 resize 事件
  const resize = () => {
    if (dataScreenRef.value) {
      dataScreenRef.value.style.transform = `scale(${getScale()}) translate(-50%, -50%)`;
    }
    // 使用了 scale 的echarts其实不需要需要重新计算缩放比例
    // Object.values(dataScreen).forEach(chart => {
    //   chart && chart.resize();
    // });
  };

  // 地图echarts
  function initChart() {
    const myChart = init(document.getElementById('map') as HTMLDivElement)
    echarts.registerMap('china', mapJson)
    const option = <EChartsOption>{
      title: {
        text: "BOOL T-BOX 全国安装数量",
        subtext: "",
        x: "center",
        textStyle: {
          color: '#ffffff'
        }
      },
      backgroundColor: "transparent",
      //左侧小导航图标
      visualMap: {
        min: 0,
        max: 600,
        text: ["高", "低"],
        inRange: {
          color: ["#D8FAFE", "#006EDD"]
        },
        textStyle: {
          color: '#ffffff'
        }
      },
      series: [
        {
          name: "中华人民共和国",
          type: "map",
          top: 200,
          label: {
            normal: {
              show: true,
              textStyle: {
                color: "#fff",
                fontSize: 15,
              },
            },
            emphasis: {
              textStyle: {
                color: "#fff",
              },
            },
          },
          itemStyle: {
            normal: {
              // borderWidth: 1.5,
              areaColor: "#4c60ff",
              borderColor: "#002097",
            },
            emphasis: {
              areaColor: "#293fff",
              borderWidth: 0,
              color: "green",
            },
          },
          zoom: 1.4,
          roam: false,
          map: "china", //使用
          data: [//这是数据,500以内的随机数
            { name: "北京市", value: "100" },
            { name: "天津市", value: Math.round(Math.random() * 500) },
            { name: "上海市", value: Math.round(Math.random() * 500) },
            { name: "重庆", value: Math.round(Math.random() * 500) },
            { name: "河北省", value: Math.round(Math.random() * 500) },
            { name: "河南省", value: Math.round(Math.random() * 500) },
            { name: "云南省", value: Math.round(Math.random() * 500) },
            { name: "辽宁省", value: Math.round(Math.random() * 500) },
            { name: "黑龙江省", value: Math.round(Math.random() * 500) },
            { name: "湖南省", value: Math.round(Math.random() * 500) },
            { name: "安徽省", value: Math.round(Math.random() * 500) },
            { name: "山东省", value: Math.round(Math.random() * 500) },
            { name: "新疆维吾尔自治区", value: Math.round(Math.random() * 500) },
            { name: "江苏省", value: Math.round(Math.random() * 500) },
            { name: "浙江省", value: Math.round(Math.random() * 500) },
            { name: "江西省", value: Math.round(Math.random() * 500) },
            { name: "湖北省", value: Math.round(Math.random() * 500) },
            { name: "广西省", value: Math.round(Math.random() * 500) },
            { name: "甘肃省", value: Math.round(Math.random() * 500) },
            { name: "山西省", value: Math.round(Math.random() * 500) },
            { name: "内蒙古自治区", value: Math.round(Math.random() * 500) },
            { name: "陕西省", value: Math.round(Math.random() * 500) },
            { name: "吉林省", value: Math.round(Math.random() * 500) },
            { name: "福建省", value: Math.round(Math.random() * 500) },
            { name: "贵州省", value: Math.round(Math.random() * 500) },
            { name: "广东省", value: Math.round(Math.random() * 500) },
            { name: "青海省", value: Math.round(Math.random() * 500) },
            { name: "西藏自治区", value: Math.round(Math.random() * 500) },
            { name: "四川省", value: Math.round(Math.random() * 500) },
            { name: "宁夏回族自治区", value: Math.round(Math.random() * 500) },
            { name: "海南省", value: Math.round(Math.random() * 500) },
            { name: "台湾省", value: Math.round(Math.random() * 500) },
            { name: "香港特别行政区", value: Math.round(Math.random() * 500) },
            { name: "澳门特别行政区", value: Math.round(Math.random() * 500) },
            { name: "南海诸岛", value: 5 },
          ] //数据
        }
      ],
      tooltip: {
        // 自定义弹窗
        // 鼠标引入省份,不断触发.params 对象.当前省份的信息.
        formatter: function (params) {
          // console.log(params);
          return params.seriesName + "<br>" + params.name + ":" + params.value + "辆";
        },
      }
    }
    myChart.setOption(option)
    window.addEventListener("resize", function () {
      myChart.resize();
    });
    setTimeout(() => {
      loading.value = false
    }, 2000)
  }
  // 饼图
  function initChart2() {
    // 基于准备好的dom,初始化echarts实例
    const myChart = init(document.getElementById('echart6') as HTMLDivElement)
    let dataStyle = {
      normal: {
        label: {
          show: false
        },
        labelLine: {
          show: false
        },
        //shadowBlur: 40,
        //shadowColor: 'rgba(40, 40, 40, 1)',
      }
    };
    let placeHolderStyle = {
      normal: {
        color: 'rgba(255,255,255,.05)',
        label: {show: false,},
        labelLine: {show: false}
      },
      emphasis: {
        color: 'rgba(0,0,0,0)'
      }
    };
    let option = {
      title: {
        text: "T-BOX 全国销量Top5",
        subtext: "",
        x: "center",
        textStyle: {
          color: '#ffffff'
        }
      },
      color: ['#0f63d6', '#0f78d6', '#0f8cd6', '#0fa0d6', '#0fb4d6'],
      tooltip: {
        show: true,
        formatter: "{a} : {c} 万辆"
      },
      legend: {
        itemWidth: 10,
        itemHeight: 10,
        itemGap: 12,
        bottom: '3%',

        data: ['浙江', '上海', '广东', '北京', '深圳'],
        textStyle: {
          color: 'rgba(255,255,255,.6)',
        }
      },
      series: [
        {
          name: '浙江',
          type: 'pie',
          clockWise: false,
          center: ['50%', '42%'],
          radius: ['59%', '70%'],
          itemStyle: dataStyle,
          hoverAnimation: false,
          data: [{
            value: 80,
            name: '01'
          }, {
            value: 20,
            name: 'invisible',
            tooltip: {show: false},
            itemStyle: placeHolderStyle
          }]
        },
        {
          name: '上海',
          type: 'pie',
          clockWise: false,
          center: ['50%', '42%'],
          radius: ['49%', '60%'],
          itemStyle: dataStyle,
          hoverAnimation: false,
          data: [{
            value: 70,
            name: '02'
          }, {
            value: 30,
            name: 'invisible',
            tooltip: {show: false},
            itemStyle: placeHolderStyle
          }]
        },
        {
          name: '广东',
          type: 'pie',
          clockWise: false,
          hoverAnimation: false,
          center: ['50%', '42%'],
          radius: ['39%', '50%'],
          itemStyle: dataStyle,
          data: [{
            value: 65,
            name: '03'
          }, {
            value: 35,
            name: 'invisible',
            tooltip: {show: false},
            itemStyle: placeHolderStyle
          }]
        },
        {
          name: '北京',
          type: 'pie',
          clockWise: false,
          hoverAnimation: false,
          center: ['50%', '42%'],
          radius: ['29%', '40%'],
          itemStyle: dataStyle,
          data: [{
            value: 60,
            name: '04'
          }, {
            value: 40,
            name: 'invisible',
            tooltip: {show: false},
            itemStyle: placeHolderStyle
          }]
        },
        {
          name: '深圳',
          type: 'pie',
          clockWise: false,
          hoverAnimation: false,
          center: ['50%', '42%'],
          radius: ['20%', '30%'],
          itemStyle: dataStyle,
          data: [{
            value: 50,
            name: '05'
          }, {
            value: 50,
            name: 'invisible',
            tooltip: {show: false},
            itemStyle: placeHolderStyle
          }]
        },]
    };

    // 使用刚指定的配置项和数据显示图表。
    myChart.setOption(option);
  }
  // 柱状图
  function initChart3() {
    const myChart = init(document.getElementById('echart5') as HTMLDivElement);
    let option = {
      title: {
        text: "地域分布",
        subtext: "",
        x: "center",
        textStyle: {
          color: '#ffffff'
        }
      },
      //  backgroundColor: '#00265f',
      tooltip: {
        trigger: 'axis',
        axisPointer: {
          type: 'shadow'
        }
      },
      xAxis: [{
        type: 'category',
        data: ['浙江', '上海', '江苏', '广东', '北京', '深圳', '安徽', '四川'],
        axisLine: {
          show: true,
          lineStyle: {
            color: "rgba(255,255,255,.1)",
            width: 1,
            type: "solid"
          },
        },

        axisTick: {
          show: false,
        },
        axisLabel: {
          interval: 0,
          // rotate:50,
          show: true,
          splitNumber: 15,
          textStyle: {
            color: "rgba(255,255,255,.6)",
            fontSize: '12',
          },
        },
      }],
      yAxis: [{
        type: 'value',
        axisLabel: {
          //formatter: '{value} %'
          show: true,
          textStyle: {
            color: "rgba(255,255,255,.6)",
            fontSize: '12',
          },
        },
        axisTick: {
          show: false,
        },
        axisLine: {
          show: true,
          lineStyle: {
            color: "rgba(255,255,255,.1	)",
            width: 1,
            type: "solid"
          },
        },
        splitLine: {
          lineStyle: {
            color: "rgba(255,255,255,.1)",
          }
        }
      }],
      series: [{
        type: 'bar',
        data: [2, 3, 3, 9, 15, 12, 6, 4, 6, 7, 4, 10],
        barWidth: '35%', //柱子宽度
        // barGap: 1, //柱子之间间距
        itemStyle: {
          normal: {
            color: '#27d08a',
            opacity: 1,
            barBorderRadius: 5,
          }
        }
      }
      ]
    };

    // 使用刚指定的配置项和数据显示图表。
    myChart.setOption(option);
  }
  // 折线图
  function initChart4() {
    const myChart = init(document.getElementById('echart4') as HTMLDivElement);
    let option = {
      title: {
        text: "产品对比",
        subtext: "",
        x: "center",
        textStyle: {
          color: '#ffffff'
        }
      },
      tooltip: {
        trigger: 'axis',
        axisPointer: {
          lineStyle: {
            color: '#dddc6b'
          }
        }
      },
      legend: {
        // top: '0%',
        orient: 'vertical',
        x:'right',      //可设定图例在左、右、居中
        data: ['T-Box', 'OBD检测设备'],
        textStyle: {
          color: 'rgba(255,255,255,.5)',
          fontSize: '12',
        }
      },
      // grid: {
      //   left: '10',
      //   top: '30',
      //   right: '10',
      //   bottom: '10',
      //   containLabel: true
      // },
      xAxis: [{
        type: 'category',
        boundaryGap: false,
        axisLabel: {
          textStyle: {
            color: "rgba(255,255,255,.6)",
            fontSize: 12,
          },
        },
        axisLine: {
          lineStyle: {
            color: 'rgba(255,255,255,.2)'
          }

        },

        data: ['01', '02', '03', '04', '05', '06', '07', '08', '09', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24']

      }, {

        axisPointer: {show: false},
        axisLine: {show: false},
        position: 'bottom',
        offset: 20,


      }],

      yAxis: [{
        type: 'value',
        axisTick: {show: false},
        axisLine: {
          lineStyle: {
            color: 'rgba(255,255,255,.1)'
          }
        },
        axisLabel: {
          textStyle: {
            color: "rgba(255,255,255,.6)",
            fontSize: 12,
          },
        },

        splitLine: {
          lineStyle: {
            color: 'rgba(255,255,255,.1)'
          }
        }
      }],
      series: [
        {
          name: 'T-Box',
          type: 'line',
          smooth: true,
          symbol: 'circle',
          symbolSize: 5,
          showSymbol: false,
          lineStyle: {

            normal: {
              color: '#0184d5',
              width: 2
            }
          },
          areaStyle: {
            normal: {
              color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
                offset: 0,
                color: 'rgba(1, 132, 213, 0.4)'
              }, {
                offset: 0.8,
                color: 'rgba(1, 132, 213, 0.1)'
              }], false),
              shadowColor: 'rgba(0, 0, 0, 0.1)',
            }
          },
          itemStyle: {
            normal: {
              color: '#0184d5',
              borderColor: 'rgba(221, 220, 107, .1)',
              borderWidth: 12
            }
          },
          data: [3, 4, 3, 4, 3, 4, 3, 6, 2, 4, 2, 4, 3, 4, 3, 4, 3, 4, 3, 6, 2, 4, 2, 4]

        },
        {
          name: 'OBD检测设备',
          type: 'line',
          smooth: true,
          symbol: 'circle',
          symbolSize: 5,
          showSymbol: false,
          lineStyle: {

            normal: {
              color: '#00d887',
              width: 2
            }
          },
          areaStyle: {
            normal: {
              color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
                offset: 0,
                color: 'rgba(0, 216, 135, 0.4)'
              }, {
                offset: 0.8,
                color: 'rgba(0, 216, 135, 0.1)'
              }], false),
              shadowColor: 'rgba(0, 0, 0, 0.1)',
            }
          },
          itemStyle: {
            normal: {
              color: '#00d887',
              borderColor: 'rgba(221, 220, 107, .1)',
              borderWidth: 12
            }
          },
          data: [5, 3, 5, 6, 1, 5, 3, 5, 6, 4, 6, 4, 8, 3, 5, 6, 1, 5, 3, 7, 2, 5, 1, 4]

        },

      ]

    };

    // 使用刚指定的配置项和数据显示图表。
    myChart.setOption(option);
  }
  // 行业分布
  function initChart5() {
    const myChart = init(document.getElementById('echart1') as HTMLDivElement);
    let option = {
      title: {
        text: "行业分布",
        subtext: "",
        x: "center",
        textStyle: {
          color: '#ffffff'
        }
      },
      //  backgroundColor: '#00265f',
      tooltip: {
        trigger: 'axis',
        axisPointer: {
          type: 'shadow'
        }
      },
      // grid: {
      //   left: '0%',
      //   top: '10px',
      //   right: '0%',
      //   bottom: '4%',
      //   containLabel: true
      // },
      xAxis: [{
        type: 'category',
        data: ['商超门店', '教育培训', '房地产', '生活服务', '汽车销售', '旅游酒店', '五金建材'],
        axisLine: {
          show: true,
          lineStyle: {
            color: "rgba(255,255,255,.1)",
            width: 1,
            type: "solid"
          },
        },

        axisTick: {
          show: false,
        },
        axisLabel: {
          interval: 0,
          // rotate:50,
          show: true,
          splitNumber: 15,
          textStyle: {
            color: "rgba(255,255,255,.6)",
            fontSize: '12',
          },
        },
      }],
      yAxis: [{
        type: 'value',
        axisLabel: {
          //formatter: '{value} %'
          show: true,
          textStyle: {
            color: "rgba(255,255,255,.6)",
            fontSize: '12',
          },
        },
        axisTick: {
          show: false,
        },
        axisLine: {
          show: true,
          lineStyle: {
            color: "rgba(255,255,255,.1	)",
            width: 1,
            type: "solid"
          },
        },
        splitLine: {
          lineStyle: {
            color: "rgba(255,255,255,.1)",
          }
        }
      }],
      series: [
        {
          type: 'bar',
          data: [200, 300, 300, 900, 1500, 1200, 600],
          barWidth: '35%', //柱子宽度
          // barGap: 1, //柱子之间间距
          itemStyle: {
            normal: {
              color: '#2f89cf',
              opacity: 1,
              barBorderRadius: 5,
            }
          }
        }

      ]
    };

    // 使用刚指定的配置项和数据显示图表。
    myChart.setOption(option);
  }
  // 返回首页
  const router = useRouter();

  function backIndex() {
    // console.log('关闭');
    router.push('/')
  }

</script>

<style scoped lang='scss'>
  // 背景
  .screen-bg {
    width: 100%;
    height: 100%;
    .light {
      width: 40px;
      height: 30px;
      position: absolute;
      top: 37px;
      right: 50px;
      z-index: 99999;
      transform: translate(-50%, -50%);
      /* width: fit-content; */
      text-align: center;
      line-height: 30px;
      color: #ffffff;
      font-size: 20px;
      text-transform: uppercase;
      transition: 0.5s;
      letter-spacing: 4px;
      cursor: pointer;
      overflow: hidden;
    }

    .light:hover {
      background-color: #ffffff;
      color: #050801;
      box-shadow: 0 0 5px #ffffff,
      0 0 25px #ffffff,
      0 0 50px #ffffff,
      0 0 200px #ffffff;
    }

    .light div {
      position: absolute;
    }

    .light div:nth-child(1) {
      width: 100%;
      height: 2px;
      top: 0;
      left: -100%;
      background: linear-gradient(to right, transparent, #ffffff);
      animation: animate1 1s linear infinite;
    }

    .light div:nth-child(2) {
      width: 2px;
      height: 100%;
      top: -100%;
      right: 0;
      background: linear-gradient(to bottom, transparent, #ffffff);
      animation: animate2 1s linear infinite;
      animation-delay: 0.25s;
    }

    .light div:nth-child(3) {
      width: 100%;
      height: 2px;
      bottom: 0;
      right: -100%;
      background: linear-gradient(to left, transparent, #ffffff);
      animation: animate3 1s linear infinite;
      animation-delay: 0.5s;
    }

    .light div:nth-child(4) {
      width: 2px;
      height: 100%;
      bottom: -100%;
      left: 0;
      background: linear-gradient(to top, transparent, #ffffff);
      animation: animate4 1s linear infinite;
      animation-delay: 0.75s;
    }

    @keyframes animate1 {
      0% {
        left: -100%;
      }

      50%,
      100% {
        left: 100%;
      }
    }

    @keyframes animate2 {
      0% {
        top: -100%;
      }

      50%,
      100% {
        top: 100%;
      }
    }

    @keyframes animate3 {
      0% {
        right: -100%;
      }

      50%,
      100% {
        right: 100%;
      }
    }

    @keyframes animate4 {
      0% {
        bottom: -100%;
      }

      50%,
      100% {
        bottom: 100%;
      }
    }
    // 中心容器
    .container {
      position: fixed;
      top: 50%;
      left: 50%;
      z-index: 999;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transition: all 0.3s;
      transform-origin: left top;
      /*!* 设置一个最小的宽度 *!*/
      min-width: 1800px;
      /* 设置一个最大的宽度 */
      max-width: 1800px;
      margin: 0 auto;
      padding-top: 10px;

      .header {
        position: relative;
        /*height: 5.2rem;*/
        height: 77px;
        margin-bottom: 10px;
        background-image: url('@/assets/dataScreen/pic-12.png');
        background-repeat: no-repeat;
        background-size: 100% 100%;

        .date {
          position: absolute;
          left: 100px;
          top: 55%;
          transform: translateY(-50%);
          font-family: FZHei-B01S, Arial, sans-serif;
          font-size: 20px;
          color: rgb(255, 255, 255);
          font-weight: normal;
          justify-content: center;
          text-align: center;
        }

        .title {
          position: absolute;
          left: 50%;
          top: 50%;
          transform: translate(-50%, -50%);
          font-family: FZHei-B01S, Arial, sans-serif;
          font-size: 30px;
          color: rgb(255, 255, 255);
          font-weight: normal;
          justify-content: center;
          text-align: center;
        }
      }

      .body {
        height: 100%;
        /*background: greenyellow;*/
        display: flex;
        justify-content: space-between;
    }
  }

  .mapBox {
    width: 100%;
    height: 100%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;

    .imgItem1 {
      width: 90%;
      height: 80%;
      position: absolute;
      animation: rotate 10s linear infinite;
    }

    .imgItem2 {
      /*width: 90%;*/
      /*height: 80%;*/
      position: absolute;
      animation: rotate2 10s linear infinite;
    }

    @keyframes rotate {
      100% {
        transform: rotate(360deg);
      }
    }
    @keyframes rotate2 {
      100% {
        transform: rotate(-360deg);
      }
    }
  }
  ::v-deep .dv-border-box-1 .border-box-content{
    display: flex !important;
    align-items: center !important;
  }
</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • 273
  • 274
  • 275
  • 276
  • 277
  • 278
  • 279
  • 280
  • 281
  • 282
  • 283
  • 284
  • 285
  • 286
  • 287
  • 288
  • 289
  • 290
  • 291
  • 292
  • 293
  • 294
  • 295
  • 296
  • 297
  • 298
  • 299
  • 300
  • 301
  • 302
  • 303
  • 304
  • 305
  • 306
  • 307
  • 308
  • 309
  • 310
  • 311
  • 312
  • 313
  • 314
  • 315
  • 316
  • 317
  • 318
  • 319
  • 320
  • 321
  • 322
  • 323
  • 324
  • 325
  • 326
  • 327
  • 328
  • 329
  • 330
  • 331
  • 332
  • 333
  • 334
  • 335
  • 336
  • 337
  • 338
  • 339
  • 340
  • 341
  • 342
  • 343
  • 344
  • 345
  • 346
  • 347
  • 348
  • 349
  • 350
  • 351
  • 352
  • 353
  • 354
  • 355
  • 356
  • 357
  • 358
  • 359
  • 360
  • 361
  • 362
  • 363
  • 364
  • 365
  • 366
  • 367
  • 368
  • 369
  • 370
  • 371
  • 372
  • 373
  • 374
  • 375
  • 376
  • 377
  • 378
  • 379
  • 380
  • 381
  • 382
  • 383
  • 384
  • 385
  • 386
  • 387
  • 388
  • 389
  • 390
  • 391
  • 392
  • 393
  • 394
  • 395
  • 396
  • 397
  • 398
  • 399
  • 400
  • 401
  • 402
  • 403
  • 404
  • 405
  • 406
  • 407
  • 408
  • 409
  • 410
  • 411
  • 412
  • 413
  • 414
  • 415
  • 416
  • 417
  • 418
  • 419
  • 420
  • 421
  • 422
  • 423
  • 424
  • 425
  • 426
  • 427
  • 428
  • 429
  • 430
  • 431
  • 432
  • 433
  • 434
  • 435
  • 436
  • 437
  • 438
  • 439
  • 440
  • 441
  • 442
  • 443
  • 444
  • 445
  • 446
  • 447
  • 448
  • 449
  • 450
  • 451
  • 452
  • 453
  • 454
  • 455
  • 456
  • 457
  • 458
  • 459
  • 460
  • 461
  • 462
  • 463
  • 464
  • 465
  • 466
  • 467
  • 468
  • 469
  • 470
  • 471
  • 472
  • 473
  • 474
  • 475
  • 476
  • 477
  • 478
  • 479
  • 480
  • 481
  • 482
  • 483
  • 484
  • 485
  • 486
  • 487
  • 488
  • 489
  • 490
  • 491
  • 492
  • 493
  • 494
  • 495
  • 496
  • 497
  • 498
  • 499
  • 500
  • 501
  • 502
  • 503
  • 504
  • 505
  • 506
  • 507
  • 508
  • 509
  • 510
  • 511
  • 512
  • 513
  • 514
  • 515
  • 516
  • 517
  • 518
  • 519
  • 520
  • 521
  • 522
  • 523
  • 524
  • 525
  • 526
  • 527
  • 528
  • 529
  • 530
  • 531
  • 532
  • 533
  • 534
  • 535
  • 536
  • 537
  • 538
  • 539
  • 540
  • 541
  • 542
  • 543
  • 544
  • 545
  • 546
  • 547
  • 548
  • 549
  • 550
  • 551
  • 552
  • 553
  • 554
  • 555
  • 556
  • 557
  • 558
  • 559
  • 560
  • 561
  • 562
  • 563
  • 564
  • 565
  • 566
  • 567
  • 568
  • 569
  • 570
  • 571
  • 572
  • 573
  • 574
  • 575
  • 576
  • 577
  • 578
  • 579
  • 580
  • 581
  • 582
  • 583
  • 584
  • 585
  • 586
  • 587
  • 588
  • 589
  • 590
  • 591
  • 592
  • 593
  • 594
  • 595
  • 596
  • 597
  • 598
  • 599
  • 600
  • 601
  • 602
  • 603
  • 604
  • 605
  • 606
  • 607
  • 608
  • 609
  • 610
  • 611
  • 612
  • 613
  • 614
  • 615
  • 616
  • 617
  • 618
  • 619
  • 620
  • 621
  • 622
  • 623
  • 624
  • 625
  • 626
  • 627
  • 628
  • 629
  • 630
  • 631
  • 632
  • 633
  • 634
  • 635
  • 636
  • 637
  • 638
  • 639
  • 640
  • 641
  • 642
  • 643
  • 644
  • 645
  • 646
  • 647
  • 648
  • 649
  • 650
  • 651
  • 652
  • 653
  • 654
  • 655
  • 656
  • 657
  • 658
  • 659
  • 660
  • 661
  • 662
  • 663
  • 664
  • 665
  • 666
  • 667
  • 668
  • 669
  • 670
  • 671
  • 672
  • 673
  • 674
  • 675
  • 676
  • 677
  • 678
  • 679
  • 680
  • 681
  • 682
  • 683
  • 684
  • 685
  • 686
  • 687
  • 688
  • 689
  • 690
  • 691
  • 692
  • 693
  • 694
  • 695
  • 696
  • 697
  • 698
  • 699
  • 700
  • 701
  • 702
  • 703
  • 704
  • 705
  • 706
  • 707
  • 708
  • 709
  • 710
  • 711
  • 712
  • 713
  • 714
  • 715
  • 716
  • 717
  • 718
  • 719
  • 720
  • 721
  • 722
  • 723
  • 724
  • 725
  • 726
  • 727
  • 728
  • 729
  • 730
  • 731
  • 732
  • 733
  • 734
  • 735
  • 736
  • 737
  • 738
  • 739
  • 740
  • 741
  • 742
  • 743
  • 744
  • 745
  • 746
  • 747
  • 748
  • 749
  • 750
  • 751
  • 752
  • 753
  • 754
  • 755
  • 756
  • 757
  • 758
  • 759
  • 760
  • 761
  • 762
  • 763
  • 764
  • 765
  • 766
  • 767
  • 768
  • 769
  • 770
  • 771
  • 772
  • 773
  • 774
  • 775
  • 776
  • 777
  • 778
  • 779
  • 780
  • 781
  • 782
  • 783
  • 784
  • 785
  • 786
  • 787
  • 788
  • 789
  • 790
  • 791
  • 792
  • 793
  • 794
  • 795
  • 796
  • 797
  • 798
  • 799
  • 800
  • 801
  • 802
  • 803
  • 804
  • 805
  • 806
  • 807
  • 808
  • 809
  • 810
  • 811
  • 812
  • 813
  • 814
  • 815
  • 816
  • 817
  • 818
  • 819
  • 820
  • 821
  • 822
  • 823
  • 824
  • 825
  • 826
  • 827
  • 828
  • 829
  • 830
  • 831
  • 832
  • 833
  • 834
  • 835
  • 836
  • 837
  • 838
  • 839
  • 840
  • 841
  • 842
  • 843
  • 844
  • 845
  • 846
  • 847
  • 848
  • 849
  • 850
  • 851
  • 852
  • 853
  • 854
  • 855
  • 856
  • 857
  • 858
  • 859
  • 860
  • 861
  • 862
  • 863
  • 864
  • 865
  • 866
  • 867
  • 868
  • 869
  • 870
  • 871
  • 872
  • 873
  • 874
  • 875
  • 876
  • 877
  • 878
  • 879
  • 880
  • 881
  • 882
  • 883
  • 884
  • 885
  • 886
  • 887
  • 888
  • 889
  • 890
  • 891
  • 892
  • 893
  • 894
  • 895
  • 896
  • 897
  • 898
  • 899
  • 900
  • 901
  • 902
  • 903
  • 904
  • 905
  • 906
  • 907
  • 908
  • 909
  • 910
  • 911
  • 912
  • 913
  • 914
  • 915
  • 916
  • 917
  • 918
  • 919
  • 920
  • 921
  • 922
  • 923
  • 924
  • 925
  • 926
  • 927
  • 928
  • 929
  • 930
  • 931
  • 932
  • 933
  • 934
  • 935
  • 936
  • 937
  • 938
  • 939
  • 940
  • 941
  • 942
  • 943
  • 944
  • 945
  • 946
  • 947
  • 948
  • 949
  • 950
  • 951
  • 952
  • 953
  • 954
  • 955
  • 956
  • 957
  • 958
  • 959
  • 960
  • 961
  • 962
  • 963
  • 964
  • 965
  • 966
  • 967
  • 968
  • 969
  • 970
  • 971
  • 972
  • 973
  • 974
  • 975
  • 976
  • 977
  • 978
  • 979
  • 980
  • 981
  • 982
  • 983
  • 984
  • 985
  • 986
  • 987
  • 988
  • 989
  • 990
  • 991
  • 992
  • 993
  • 994

六.所需图片等资源下载:

所需图片等资源下载

七.地图数据工具:

推荐大家使用阿里云的数据可视化平台后续会整理一期这个平台的使用方法。

数据可视化平台后

八.留在最后:

感谢大家对我的支持; 如果我的博文可以帮到大家,记得点个关注一键三连哦;
乾坤未定,你我皆是黑马!!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/696580
推荐阅读
相关标签
  

闽ICP备14008679号