ECharts

本博客主要为黑马程序员网课中关于 ECharts 模块(网课在下面有介绍)所整理记录的学习笔记,仅作学习用途,如有侵权,烦请联系本人侵删。同时感谢黑马老师们的辛苦教导付出,如有不足之处,欢迎各位小伙伴、官老爷们多多提意见或建议,感谢!


ECharts数据可视化项目-大屏数据可视化展示-echarts 图表制作-pink老师直播课更新完毕)_哔哩哔哩_bilibili

一、可视化面板介绍

应对现在数据可视化的趋势,越来越多企业需要在很多场景(营销数据,生产数据,用户数据)下使用,可视化图表来展示体现数据,让数据更加直观,数据特点更加突出。数据可视化主要目的:借助于图形化手段,清晰有效地传达与沟通信息,可以把数据从冰冷的数字转换成图形,揭示蕴含在数据中的规律和道理,下面通过一个案例来诠释下可视化面板的制作过程。

使用技术

完成该项目需要具备以下知识:

  • div + css 布局

  • flex 布局

  • Less

  • 原生js + jquery 使用

  • rem适配

  • echarts基础

项目可以采用 vue 框架书写,也可以用原生的三件套,再装个 node.js 即可开箱使用,任君选择

案例适配方案

为了将网站做成适合不同大小的窗口,这里介绍两种适配方案。

方案一:采用 flexible.js,它会根据浏览器尺寸自动改变大小

<script src="js/flexible.js"></script>

方案二:在vscode里装 cssrem 插件,80px == 1rem。

因为设计稿是1920px,而 flexible.js 把屏幕分为 24 等份,所以 cssrem 插件的基准值是 80px。打开插件-配置按钮---配置扩展设置--Root Font Size 里面设置 80,然后重启 vscode 软件保证生效。

基础设置

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: url(../images/bg.jpg) no-repeat top center;
    line-height: 1.15;
}

二、 整体框架布局

头部模块

<html lang="en">
<head>
    <meta charset="UTF-8" />
    <meta name="viewport"content="width=device-width,initial-scale=1.0" />
    <title>数据可视化</title>
    <link rel="stylesheet" href="css/index.css" />
</head>
<body>
    <!-- 头部的盒子 -->
    <header>
        <h1>数据可视化-Echarts</h1>
        <div class="showTime">1231231231</div>
    </header>
    <script>
        // 右上角时间格式:2020年3月17-0时54分14秒
        var t = null;
        t = setTimeout(time, 1000);//開始运行
        function time() {
            clearTimeout(t);//清除定时器
            dt = new Date();
            var y = dt.getFullYear();
            var mt = dt.getMonth() + 1;
            var day = dt.getDate();
            var h = dt.getHours();//获取时
            var m = dt.getMinutes();//获取分
            var s = dt.getSeconds();//获取秒
            document.querySelector(".showTime").innerHTML = '当前时间:' + y + "年" + mt + "月" + day + "-" + h + "时" + m + "分" + s + "秒";
            t = setTimeout(time, 1000); //设定定时器,循环运行     
         }
    </script>
</body>
/* header表头(包含中间的h1标题跟右边的时间)*/
header {
  /* 子绝父相 */
  position: relative; /* 父相 */
  height: 1.25rem;
  background: url(../images/head_bg.png) no-repeat top center;
  background-size: 100% 100%; /* 背景缩放比为100% */
  h1 {
    font-size: 0.475rem;
    color: #fff;
    text-align: center;
    line-height: 1rem;
  }
  .showTime {
    position: absolute; /* 子绝 */
    top: 0;
    right: 0.375rem;
    line-height: 0.9375rem;
    font-size: 0.25rem;
    color: rgba(255, 255, 255, 0.7);
  }
}

主体模块

<body>
    <section class="mainbox">
        <div class="column">1</div>
        <div class="column">2</div>
        <div class="column">3</div>
    </section>
</body>
/* 页面主体盒子 */
.mainbox {
    display: flex;
    min-width: 1024px;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0.125rem 0.125rem 0;
    .column {
        flex: 3;
    }
    &:nth-child(2) {
        flex: 5;
    }
}

公共面板

<body>
    <section class="mainbox">
        <div class="column">
            <div class="panel">
                <div class="panel-footer"></div>
            </div>
        </div>
        <div class="column">中间盒子</div>
        <div class="column">右侧盒子</div>
    </section>
</body>
.mainbox {
    .panel {
      position: relative;
      height: 3.875rem; /* 310px */
      border: 1px solid rgba(25, 186, 139, 0.17);
      background: url(../images/line\(1\).png);
      padding: 0 0.1875rem 0.5rem;
      margin-bottom: 0.1875rem;
      /* 左上角 */
      &::before {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        width: 10px;
        height: 10px;
        border-top: 2px solid #02a6b5;
        border-left: 2px solid #02a6b5;
      }
      /* 右上角 */
      &::after {
        position: absolute;
        top: 0;
        right: 0;
        content: "";
        width: 10px;
        height: 10px;
        border-top: 2px solid #02a6b5;
        border-right: 2px solid #02a6b5;
      }
      .panel-footer {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        &::before {
          position: absolute;
          bottom: 0;
          left: 0;
          content: "";
          width: 10px;
          height: 10px;
          border-bottom: 2px solid #02a6b5;
          border-left: 2px solid #02a6b5;
        }
        &::after {
          position: absolute;
          bottom: 0;
          right: 0;
          content: "";
          width: 10px;
          height: 10px;
          border-bottom: 2px solid #02a6b5;
          border-right: 2px solid #02a6b5;
        }
      }
    }
}

柱状图

<body>
    <section class="mainbox">
        <!-- 左侧盒子 -->
        <div class="column">
            <div class="panel bar">
                <h2>柱形图-就业行业</h2>
                <div class="chart">图表</div>
                <div class="panel-footer"></div>
            </div>
            <div class="panel line">
                <h2>柱形图-就业行业</h2>
                <div class="chart">图表</div>
                <div class="panel-footer"></div>
            </div>
            <div class="panel pie">
                <h2>柱形图-就业行业</h2>
                <div class="chart">图表</div>
                <div class="panel-footer"></div>
            </div>
        </div>
        <!-- 中间盒子 -->
        <div class="column"></div>
        <!-- 右侧盒子 -->
        <div class="column">
            <div class="panel bar">
                <h2>柱形图-就业行业</h2>
                <div class="chart">图表</div>
                <div class="panel-footer"></div>
            </div>
            <div class="panel line">
                <h2>柱形图-就业行业</h2>
                <div class="chart">图表</div>
                <div class="panel-footer"></div>
            </div>
            <div class="panel pie">
                <h2>柱形图-就业行业</h2>
                <div class="chart">图表</div>
                <div class="panel-footer"></div>
            </div>
        </div>
    </section>
</body>
.panel {
    h2 {
        height: 0.6rem;
        line-height: 0.6rem;
        text-align: center;
        color: #fff;
        font-size: 20px;
        font-weight: 400;
  }
  .chart {
        height: 3rem;
        background-color: pink;
  }
}

中间布局

上面的 no 模块

注意!上面出现过的代码下面就不再赘述,用 “...” 代替,只描述具体用途代码

<body>
    <section class="mainbox">
        <!-- 左侧盒子 -->
        <div class="column">...</div>
        <!-- 中间盒子 -->
        <div class="column">
            <!-- no模块 -->
            <div class="no">
                <div class="no-hd">
                    <ul>
                        <li>125811</li>
                        <li>100000</li>
                    </ul>
                </div>
                <div class="no-bd">
                    <ul>
                        <li>前端需求人数</li>
                        <li>市场供应人数</li>
                    </ul>
                </div>
            </div>
        </div>
        <!-- 右侧盒子 -->
        <div class="column">...</div>
    </section>
</body>
/* 这里放置一些全局属性,后面都会用到 */
li {
    list-style: none; /* 去掉无序列表的点 */
}
/* 声明字体 */
@font-face {
  font-family: electronicFont;
  src: url(../font/DS-DIGIT.TTF); /* 导入图标字体文件 */
}
​
/* 页面主体盒子 */
.mainbox {
    ...
    &:nth-child(2) {
        flex: 5;
        <!-- 给no模块增加外边距 -->
        margin: 0 .125rem .1875rem
    }
    ...
    /* no 数字模块 */
    no {
        background: rbga(101, 132, 226, 0.1);
        padding: 0.1875rem;
        /* 上边的数字统计 */
        .no-hd {
            position: relative;
            border: 1px solid rgba(25, 186, 139, 17);
            ul {
                display: flex;
                li {
                    flex: 1;
                    line-height: 1rem;
                    font-size: .875rem;
                    color: #ffeb7b;
                    text-align: center;
                    font-family: "electronicFont";
                    /* 中间竖线 */
                    &::after {
                        content: "";
                        position: absolute;
                        top: 25%;
                        height: 50%;
                        right: 0;
                        width: 1px;
                        background: rgba(255, 255, 255, 0.2);
                    }
                }
            }
            /* 左上角 */
            &::before {
                position: absolute;
                top: 0;
                left: 0;
                content: '';
                width: 30px;
                height: 10px;
                border-top: 2px solid #02a6b5;
                border-left: 2px solid #02a6b5;
            }
            /* 右下角 */
            &::after {
                position: absolute;
                bottom: 0;
                right: 0;
                content: '';
                width: 30px;
                height: 10px;
                border-right: 2px solid #02a6b5;
                border-bottom: 2px solid #02a6b5;
            }
        }
        /* 下面的文字说明 */
        .no-bd {
            ul {
                display: flex;
                li {
                    flex: 1;
                    text-align: center;
                    color: rgba(255, 255, 255, 0.7);
                    font-size: 0.225rem;
                    height: 0.5rem;
                    line-height: 0.5rem;
                    padding-top: 0.125rem;
                }
            }
        }
    }
}

下面的地图模块

  1. 地图模块高度为 810px 里面包含4个盒子 chart 放图表模块 球体盒子 旋转1 旋转2

  2. 球体图片模块 map1 大小为 518px 要加背景图片 因为要缩放100% 定位到最中央 透明度 .3

  3. 旋转1 map 2 大小为 643px 要加背景图片 因为要缩放100% 定位到中央 透明度 .6 做旋转动画 利用z-index压住球体

  4. 旋转2 map3 大小为 566px 要加背景图片 因为要缩放100% 定位到中央 旋转动画 注意是逆时针

<body>
    <section class="mainbox">
        <!-- 左侧盒子 -->
        <div class="column">...</div>
        <!-- 中间盒子 -->
        <div class="column">
            <!-- no模块 -->
            <div class="no">...</div>
            <!-- 地图模块 -->
            <div class="map">
                <div class="chart"></div>
                <div class="map1"></div>
                <div class="map2"></div>
                <div class="map3"></div>
            </div>
        </div>
        <!-- 右侧盒子 -->
        <div class="column">...</div>
    </section>
</body> 
.map {
    position: relative;
    height: 10.125rem;
    /* 地图模块 */
    .chart {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 5;
        height: 10.125rem;
        width: 100%;
    }
    /* 球体位置 */
    .map1,
    .map2,
    .map3 {
        width: 6.475rem;
        height: 6.475rem;
        /* 将球体定位到中央 */
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: url(../images/map.png) no-repeat;
        background-size: 100% 100%;
        opacity: 0.3; /* 0.3的透明度 */
    }
    /* 顺时针旋转球体 */
    .map2 {
        width: 8.0375rem;
        height: 8.0375rem;
        /* 这俩属性在上面定义并公用了,这里无需再写 */
        /* position: absolute; */
        /* transform: translate(-50%, -50%); */
        background-image: url(../images/lbx.png);
        /* 顺时针动画,下面有定义 */
        animation: rotate 15s linear infinite;
        opacity: 0.6;
        z-index: 2;
    }
    /* 逆时针旋转圆框 */
    .map3 {
        width: 7.075rem;
        height: 7.075rem;
        background-image: url(../images/jt.png);
        /* 逆时针动画,下面有定义 */
        animation: rotate1 10s linear infinite;
    }
    /* 顺时针动画 */
    @keyframes rotate {
        from {
            transform: translate(-50%, -50%) rotate(0deg);
        }
        to {
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }
    /* 逆时针动画 */
    @keyframes rotate1 {
        from {
            transform: translate(-50%, -50%) rotate(0deg);
        }
        to {
            transform: translate(-50%, -50%) rotate(-360deg);
        }
    }
}

三、Echarts-介绍

常见的数据可视化库:

  • D3.js 目前 Web 端评价最高的 Javascript 可视化工具库(入手难)

  • ECharts.js 百度出品的一个开源 Javascript 数据可视化库

  • Highcharts.js 国外的前端数据可视化库,非商用免费,被许多国外大公司所使用

  • AntV 蚂蚁金服全新一代数据可视化解决方案 等等

  • Highcharts 和 Echarts 就像是 Office 和 WPS 的关系

ECharts,一个使用 JavaScript 实现的开源可视化库,可以流畅的运行在 PC 和移动设备上,兼容当前绝大部分浏览器(IE8/9/10/11,Chrome,Firefox,Safari等),底层依赖矢量图形库 ZRender,提供直观,交互丰富,可高度个性化定制的数据可视化图表。

大白话:

社区介绍

官网地址:https://www.echartsjs.com/zh/index.html

地址2:Echarts - ChartLib (datains.cn)

社区就是一些,活跃的echart使用者,交流和贡献定制好的图表的地方。

  • 在这里可以找到一些基于echart的高度定制好的图表,相当于基于jquery开发的插件,这里是基于echarts开发的第三方的图表。

快速上手

官方教程:Apache ECharts下载 - Apache ECharts

使用步骤:

  1. 引入echarts 插件文件到html页面中

  2. 准备一个具备大小的DOM容器

  3. 初始化echarts实例对象

  4. 指定配置项和数据(option)

  5. 将配置项设置给echarts实例对象

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>ECharts</title>
    <!-- 1.引入刚刚下载的 ECharts 文件 -->
    <script src="echarts.js"></script>
  </head>
  <body>
    <!-- 2.为 ECharts 准备一个定义了宽高的 DOM -->
    <div id="main" style="width: 600px;height:400px;"></div>
    <script type="text/javascript">
        
      // 3.基于准备好的dom,初始化echarts实例
      var myChart = echarts.init(document.getElementById('main'));
​
      // 4.指定图表的配置项和数据
      var option = {
          title: {
              text: 'ECharts 入门示例'
          },
          tooltip: {},
          legend: {
              data: ['销量']
          },
          xAxis: {
              data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子']
          },
          yAxis: {},
          series: [
              {
                  name: '销量',
                  type: 'bar',
                  data: [5, 20, 36, 10, 10, 20]
              }
          ]
      };
​
      // 5.使用刚指定的配置项和数据显示图表。
      myChart.setOption(option);
    </script>
  </body>
</html>

基础配置

这是要求知道以下配置每个模块的主要作用干什么的就可以了。

更多配置请移步查看官网(支持在线演示):Examples - Apache ECharts

需要了解的主要配置:title series xAxis yAxis grid tooltip legend color

option = {
    // 线条颜色
    color: ['pink', 'red', 'green', 'skyblue'],
    // 图表标题
    title: {
        text: '折线图堆叠123'
    },
    // 提示框(hover)
    tooltip: {
        // 触发方式(item: 散点图、饼图; axis: 柱状图、折线图)
        trigger: 'axis'
    },
    // 图例组件
    legend: {
       // series里面有了 name 值则 legend里面的data可以删掉
       data: ['邮件营销', '联盟广告', '视频广告', '直接访问']
    },
    // 网格配置:可以控制线形图、柱状图的图表相对于整体DOM容器的大小
    grid: {
        left: '3%',
        right: '4%',
        bottom: '3%',
        // 是否显示刻度标签(true: 显示、false: 隐藏)
        containLabel: true
    },
    // 工具箱组件:可以另存为图片
    toolbox: {
        feature: {
            saveAsImage: {}
        }
    },
    // 设置x轴的相关配置
    xAxis: {
        type: 'category',
        // 是否让我们的线条和坐标轴有缝隙
        boundaryGap: false,
        data: ['星期一', '周二', '周三', '周四', '周五', '周六', '周日']
    },
     // 设置y轴的相关配置
    yAxis: {
        type: 'value'
    },
    // 系列图表配置 它决定着显示那种类型的图表
    series: [
        {
            name: '邮件营销',
            type: 'line',
            /* 数据堆叠:有了stack属性后第二个“联盟广告”的数据是由前面的120+220堆叠成的 */
            /* stack: '总量', */
            data: [120, 132, 101, 134, 90, 230, 210]
        },
        {
            name: '联盟广告',
            type: 'line',
            /* 如果不需要堆叠则删除 stack 属性即可 */
            
            data: [220, 182, 191, 234, 290, 330, 310]
        },
        {
            name: '视频广告',
            type: 'line',
          
            data: [150, 232, 201, 154, 190, 330, 410]
        },
        {
            name: '直接访问',
            type: 'line',
          
            data: [320, 332, 301, 334, 390, 330, 320]
        }
    ]
};

垂直柱状图

官网找到类似实例, 适当分析,根据前面的基础配置流程,下载并导入 echarts.js 文件

然后从官网复制模板:Examples - Apache ECharts,再根据需求依次配置柱状图;同时也要让图表跟随屏幕自适应。

<body>
    <script src="js/echarts.min.js"></script>
    <script src="js/index.js"></script>
    <section class="mainbox">
        <!-- 左侧盒子 -->
        <div class="column">
            <div class="panel bar">
                <h2>柱形图-就业行业</h2>
                <div class="chart"></div>
                <div class="panel-footer"></div>
            </div>
            <div class="panel line">...</div>
            <div class="panel pie">...</div>
        </div>
        <!-- 中间盒子 -->
        <div class="column"></div>
        <!-- 右侧盒子 -->
        <div class="column">...</div>
    </section>
</body>
/* index.js */
​
// 为了防止变量污染,减少命名冲突,我们可以采取立即执行函数的写法,因为里面的变量都是局部变量
(function() {
    // 实例化对象
    let myChart = echarts.init(document.querySelector(".bar .chart"));
    
    // 指定配置和数据
    let option = {
        color: ["#2f89cf"],
        tooltip: {
            trigger: "axis",
            axisPointer: {
                // 坐标轴指示器,坐标轴触发有效
                type: "shadow" // 默认为直线,可选为:'line' | 'shadow'
            }
        },
        // 图表大小
        grid: {
            left: "0%",
            top: "10px",
            right: "0%",
            bottom: "4%",
            containLabel: true
        },
        // X 轴定制
        xAxis: [
            {
                type: "category",
                data: [ "旅游行业","教育培训", "游戏行业", "医疗行业", "电商行业", "社交行业", "金融行业" ],
                axisTick: { alignWithLabel: true },
                // 设置x轴标签文字样式
                axisLabel: {
                    color: "rgba(255,255,255,.6)",
                    fontSize: "12"
                },
                axisLine: { show: false, } // 不显示X坐标轴
            }
        ],
        // Y 轴定制
        yAxis: [
            {
                type: "value",
                // y 轴文字标签样式
                axisLabel: {
                    color: "rgba(255,255,255,.6)",
                    fontSize: "12"
                },
                // y 轴线
                axisLine: {
                    lineStyle: {
                        color: "rgba(255,255,255,.1)",
                        width: 2,
                    }
                }
                // y 轴分割线
                splitLine: {
                    lineStyle: {
                        color: "rgba(255,255,255,.1)"
                    }
                }
            }
        ],
        // 柱子配置
        series: [
            {
                name: "直接访问",
                type: "bar",
                // 柱子宽度
                barWidth: "35%",
                data: [200, 300, 300, 900, 1500, 1200, 600],
                itemStyle: {
                    // 修改柱子圆角
                    barBorderRadius: 5
                }
            }
        ]
    };
 
    // 把配置给实例对象
    myChart.setOption(option);
​
    // 让图表跟随屏幕自适应
    window.addEventListener("resize", function() {
        myChart.resize();
    });
})();

水平柱状图

官网找到类似实例, 适当分析,并且引入到HTML页面中,然后根据需求定制图表

配置流程跟垂直柱状图差不多,就不再赘述,但这里要注意一点:

因为水平柱状图是由两条一组数据的形式组成,所以在柱子配置时,根据需求,将第一条柱子以 “条”、第二条以 “框” 来显示。

<body>
    <script src="js/echarts.min.js"></script>
    <script src="js/index.js"></script>
    <section class="mainbox">
        <!-- 左侧盒子 -->
        <div class="column">...</div>
        <!-- 中间盒子 -->
        <div class="column"></div>
        <!-- 右侧盒子 -->
        <div class="column">
            <div class="panel bar2">
                <h2>柱形图-就业行业</h2>
                <div class="chart">图表</div>
                <div class="panel-footer"></div>
            </div>
            <div class="panel line">
                <h2>柱形图-就业行业</h2>
                <div class="chart">图表</div>
                <div class="panel-footer"></div>
            </div>
            <div class="panel pie">
                <h2>柱形图-就业行业</h2>
                <div class="chart">图表</div>
                <div class="panel-footer"></div>
            </div>
        </div>
    </section>
</body>
/* index.js */
​
(function() {
    var myColor = ["#1089E7", "#F57474", "#56D0E3", "#F8B448", "#8B78F6"];
    
    // 实例化对象
    var myChart = echarts.init(document.querySelector(".bar2 .chart"));
    
    // 指定配置和数据
    var option = {
        grid: {
            top: "10%",
            left: "22%",
            bottom: "10%"
            // containLabel: true
        },
        xAxis: { show: false }, // 不显示x轴的相关信息
        // Y轴定制
        yAxis: [
            // 左侧分类
            {
                type: "category",
                inverse: true, // 反转坐标轴
                data: ["HTML5", "CSS3", "javascript", "VUE", "NODE"],
                axisLine: { show: false }, // 不显示y轴的线
                axisTick: { show: false }, // 不显示刻度
                axisLabel: { color: "#fff" } // 把刻度标签里面的文字颜色设置为白色
            },
            // 右侧
            {
                data: [702, 350, 610, 793, 664],
                inverse: true, // 反转坐标轴
                axisLine: { show: false }, // 不显示y轴的线
                axisTick: { show: false }, // 不显示刻度
                axisLabel: { color: "#fff" } // 把刻度标签里面的文字颜色设置为白色
            }
        ],
        // 柱子配置
        series: [
            {
                name: "条",
                type: "bar",
                data: [70, 34, 60, 78, 69],
                // 设置两组柱子的层叠
                yAxisIndex: 0,
                // 修改第一组柱子的圆角
                itemStyle: {
                    barBorderRadius: 20,
                    // 此时的color 可以修改柱子的颜色 (params 传进来的是柱子对象)
                    color: function(params) {
                        // dataIndex 是当前柱子的索引号
                        return myColor[params.dataIndex];
                    }
                },
                // 柱子之间的距离
                barCategoryGap: 50,
                //柱子的宽度
                barWidth: 10,
                // 显示柱子内的文字
                label: {
                    show: true,
                    position: "inside",
                    // {c} 会自动的解析前面 data 里的数据
                    formatter: "{c}%"
                }
            },
            {
                name: "框",
                type: "bar",
                barCategoryGap: 50,
                barWidth: 15,
                // 设置两组柱子的层叠,把 “框” 叠在 “条” 上
                yAxisIndex: 1,
                data: [100, 100, 100, 100, 100],
                itemStyle: {
                    color: "none",
                    borderColor: "#00c1de",
                    borderWidth: 3,
                    barBorderRadius: 15
                }
            }
        ]
    };
​
    // 把配置给实例对象
    myChart.setOption(option);
    
    // 让图表跟随屏幕自适应
    window.addEventListener("resize", function() {
        myChart.resize();
    });
})();

圆滑折线图

官网找到类似实例, 适当分析,并且引入到HTML页面中,然后根据需求定制图表

<body>
    <script src="js/echarts.min.js"></script>
    <script src="js/jquery.js"></script>
    <script src="js/index.js"></script>
    <section class="mainbox">
        <!-- 左侧盒子 -->
        <div class="column">
            <div class="panel bar">...</div>
            <div class="panel line">
                <h2>
                    折线图-人员变化
                    <a href="javascript:;">2020</a><a href="javascript:;">2021</a>
                </h2>
                <div class="chart"></div>
                <div class="panel-footer"></div>
            </div>
            <div class="panel pie">...</div>
        </div>
        <!-- 中间盒子 -->
        <div class="column"></div>
        <!-- 右侧盒子 -->
        <div class="column">...</div>
    </section>
</body>
.panel {
    h2 {
        ...
        a {
            color: #fff;
            text-decoration: none;
            margin: 0 0.125rem;
        }
  }
  .chart {
        ...
  }
}
/* index.js */
​
(function() {
    // 后端需要回传的数据,这里为了查看数据结构就先把数据放这里
    var yearData = [
        {
            year: "2020", // 年份
            data: [
                // 两个数组是因为有两条线
                [24, 40, 101, 134, 90, 230, 210, 230, 120, 230, 210, 120],
                [40, 64, 191, 324, 290, 330, 310, 213, 180, 200, 180, 79]
            ]
        },
        {
            year: "2021", // 年份
            data: [
                // 两个数组是因为有两条线
                [123, 175, 112, 197, 121, 67, 98, 21, 43, 64, 76, 38],
                [143, 131, 165, 123, 178, 21, 82, 64, 43, 60, 19, 34]
            ]
        }
    ];
    
    // 实例化对象
    var myChart = echarts.init(document.querySelector(".line .chart"));
    
    // 指定配置和数据
    var option = {
        // 两条线的颜色
        color: ['#00f2f1', '#ed3f35'],
        tooltip: {
            trigger: "axis"
        },
        // 网格位置
        grid: {
            top: '20%',
            left: '3%',
            right: '4%',
            bottom: '3%',
            show: true,// 显示边框
            borderColor: '#012f4a', // 边框颜色
            containLabel: true // 包含刻度文字在内
        },
        // 图例组件
        legend: {
            textStyle: { color: '#4c9bfd' }, // 图例文字颜色
            right: '10%' // 距离右边10%
        },
        // 保存为图片
        // toolbox: {
        //  feature: {
        //      saveAsImage: {}
        //  }
        //}
        // X轴定制
        xAxis: {
            type: 'category',
            data: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"],
            axisTick: { show: false }, // 去除刻度线
            axisLabel: { color: '#4c9bfd' }, // 文本颜色
            axisLine: { show: false } // 去除轴线
        },
        // Y轴定制
        yAxis: {
            type: 'value',
            axisTick: { show: false }, // 去除刻度
            axisLabel: { color: '#4c9bfd' }, // 文字颜色
            splitLine: {
                lineStyle: {
                    color: '#012f4a' // 分割线颜色
                }
            }
        },
        // 线条配置
        series: [{
            name:'新增粉丝',
            // data: [24, 40, 101, 134, 90, 230, 210, 230, 120, 230, 210, 120],
            // 上面固定的死数据,改为点击右上角年份后跳转到的从后台传回的对应年份数据
            // 点击2020按钮,把data换成2020年对象里的data[0],点击2021则同理
            data: yearData[0].data[0],
            type: 'line',
            // 折线修饰为圆滑
            smooth: true,
        },{
            name:'新增游客',
            // 点击2020按钮,把data换成2020年对象里的data[1],点击2021则同理
            data: yearData[0].data[1],
            type: 'line',
            smooth: true,
        }]
    };
​
    // 把配置给实例对象
    myChart.setOption(option);
    
    // 让图表跟随屏幕自适应
    window.addEventListener("resize", function() {
        myChart.resize();
    });
    
    // h2里的a链接 - 点击切换效果
    $(".line h2").on("click", "a", function() {
        // alert(1);
        // console.log($(this).index());
        // 点击 a 之后 根据当前a的索引号 找到对应的 yearData的相关对象
        // console.log(yearData[$(this).index()]);
        var obj = yearData[$(this).index()];
        option.series[0].data = obj.data[0];
        option.series[1].data = obj.data[1];
        // 需要重新渲染
        myChart.setOption(option);
    });
})();

阴影曲线图

官网找到类似实例, 适当分析,并且引入到HTML页面中,根据需求定制图表

<body>
    <script src="js/echarts.min.js"></script>
    <script src="js/index.js"></script>
    <section class="mainbox">
        <!-- 左侧盒子 -->
        <div class="column">...</div>
        <!-- 中间盒子 -->
        <div class="column"></div>
        <!-- 右侧盒子 -->
        <div class="column">
            <div class="panel bar2">...</div>
            <div class="panel line2">
                <h2>折线图-播放量</h2>
                <div class="chart">图表</div>
                <div class="panel-footer"></div>
            </div>
            <div class="panel pie">...</div>
        </div>
    </section>
</body>
/* index.js */
​
(function() {    
    // 实例化对象
    var myChart = echarts.init(document.querySelector(".line2 .chart"));
    
    // 指定配置和数据
    var option = {
        color: ['#00f2f1', '#ed3f35'], // 两条线的颜色
        tooltip: {
            trigger: "axis"
        },
        // 网格位置
        grid: {
            left: '10',
            top: '30',
            right: '10',
            bottom: '10',
            containLabel: true // 包含刻度文字在内
        },
        // 图例组件
        legend: {
              top: "0%",
              data: ["邮件营销", "联盟广告", "视频广告", "直接访问", "搜索引擎"],
              textStyle: {
                color: "rgba(255,255,255,.5)",
                fontSize: "12"
              }
        },
        // X轴定制
        xAxis: {
            type: 'category',
            data: [ "01","02","03","04","05","06","07","08","09","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","26","28","29","30"],
            axisTick: { show: false }, // 去除刻度线
            axisLabel: {
                textStyle: {
                    color: "rgba(255,255,255,.6)",
                    fontSize: 12
                }
            },
            axisLine: {
                lineStyle: {
                    color: "rgba(255,255,255,.2)"
                }
            }
        },
        // Y轴定制
        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: "邮件营销",
            type: 'line',
            smooth: true, // 折线修饰为圆滑
            // 线条样式
            lineStyle: { 
                color: "#0184d5",
                width: "2"
            },
            // 线条下的区域样式
            areaStyle: {
                // 渐变色
                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)",
            }
            // 设置拐点 小圆点
            symbol: "circle",
            // 拐点大小
            symbolSize: 12,
            // 设置拐点颜色以及边框
            itemStyle: {
                color: "#0184d5",
                borderColor: "rgba(221, 220, 107, .1)",
                borderWidth: 12
            },
            // 刚开始不显示拐点,鼠标经过时再显示
            showSymbol: false,
            data: [ 30, 40, 30, 40,30, 40, 30,60,20, 40, 30, 40, 30, 40,30, 40, 30,60,20, 40, 30, 40, 30, 40,30, 40, 20,60,50, 40],
        },{
            name: "转发量",
            type: "line",
            smooth: true,
            lineStyle: {
                normal: {
                    color: "#00d887",
                    width: 2
                }
            },
            areaStyle: {
                normal: { // 可省略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)"
                }
            },
            // 设置拐点 小圆点
            symbol: "circle",
            // 拐点大小
            symbolSize: 5,
            // 设置拐点颜色以及边框
            itemStyle: {
                color: "#00d887",
                borderColor: "rgba(221, 220, 107, .1)",
                borderWidth: 12
            },
            // 开始不显示拐点, 鼠标经过显示
            showSymbol: false,
            data: [ 130, 10, 20, 40,30, 40, 80,60,20, 40, 90, 40,20, 140,30, 40, 130,20,20, 40, 80, 70, 30, 40,30, 120, 20,99,50, 20],
        }]
    };
​
    // 把配置给实例对象
    myChart.setOption(option);
    
    // 让图表跟随屏幕自适应
    window.addEventListener("resize", function() {
        myChart.resize();
    });
    
})();

空心饼形图

<body>
    <script src="js/echarts.min.js"></script>
    <script src="js/index.js"></script>
    <section class="mainbox">
        <!-- 左侧盒子 -->
        <div class="column">
            <div class="panel bar">...</div>
            <div class="panel line">...</div>
            <div class="panel pie">
                <h2>饼形图-年龄分布</h2>
                <div class="chart"></div>
                <div class="panel-footer"></div>
            </div>
        </div>
        <!-- 中间盒子 -->
        <div class="column"></div>
        <!-- 右侧盒子 -->
        <div class="column">...</div>
    </section>
</body>
/* index.js */
​
(function() {
    // 实例化对象
    let myChart = echarts.init(document.querySelector(".pie .chart"));
    
    // 指定配置和数据
    let option = {
        color: [ "#065aab", "#066eab", "#0682ab", "#0696ab", "#06a0ab" ],
        // 指示器(hover)
        tooltip: {
            trigger: "item",
            formatter: "{a} <br/>{b}: {c} ({d}%)"
        },
        // 图例组件
        legend: {
            bottom: "0%", // 距离底部为0%
            itemWidth: 10, // 小图标的宽度和高度
            itemHeight: 10,
            data: ["0岁以下", "20-29岁", "30-39岁", "40-49岁", "50岁以上"], // 可忽略
            // 修改图例组件的文字为 12px
            textStyle: {
                color: "rgba(255,255,255,.5)",
                fontSize: "12"
            }
        },
        // 饼图配置
        series: [
            {
                name: "年龄分布",
                type: "pie",
                center: ["50%", "45%"], // 圆的位置(不写则默认居中)
                radius: ["40%", "60%"], // 圆的大小(内圆半径,外圆半径)
                label: { show: false },  // 图形上的文字
                labelLine: { show: false }, // 饼图与文字的连接线
                avoidLabelOverlap: false, // 避免标签重叠
                data: [
                    { value: 1, name: "0岁以下" },
                    { value: 4, name: "20-29岁" },
                    { value: 2, name: "30-39岁" },
                    { value: 2, name: "40-49岁" },
                    { value: 1, name: "50岁以上" }
                 ] ,
            }
        ]
    };
 
    // 把配置给实例对象
    myChart.setOption(option);
​
    // 让图表跟随屏幕自适应
    window.addEventListener("resize", function() {
        myChart.resize();
    });
})();

南丁格尔玫瑰图

<body>
    <script src="js/echarts.min.js"></script>
    <script src="js/index.js"></script>
    <section class="mainbox">
        <!-- 左侧盒子 -->
        <div class="column">...</div>
        <!-- 中间盒子 -->
        <div class="column"></div>
        <!-- 右侧盒子 -->
        <div class="column">
            <div class="panel bar2">...</div>
            <div class="panel line2">...</div>
            <div class="panel pie2">
                <h2>饼形图-地区分布</h2>
                <div class="chart">图表</div>
                <div class="panel-footer"></div>
            </div>
        </div>
    </section>
</body>
/* index.js */
​
(function() {
    // 实例化对象
    let myChart = echarts.init(document.querySelector(".pie2 .chart"));
    
    // 指定配置和数据
    let option = {
        color: [ "#006cff", "#60cda0", "#ed8884", "#ff9f7f", "#0096ff", "9fe6b8", "#32c5e9", "#1d9dff"],
        // 指示器(hover)
        tooltip: {
            trigger: "item",
            formatter: "{a} <br/>{b}: {c} ({d}%)"
        },
        // 图例组件
        legend: {
            bottom: "0%",
            itemWdith: 10,
            itemHeight: 10,
            textStyle: {
                color: rgba(255, 255, 255, .5),
                fontSize: "12"
            }
        },
        // 饼图配置
        series: [
            {
                name: "地区分布",
                type: "pie",
                center: ["50%", "50%"], // 圆的位置(不写则默认居中)
                radius: ["10%", "70%"], // 圆的大小(内圆半径,外圆半径)
                roseType: 'radius', // 半径模式,根据半径计算占比,(还有面积模式 area)
                label: { fontsize: 10}, // 图形的文字标签大小
                labelLine: {
                    length: 6, // 链接图形的线条
                    length2: 8 // 链接文字的线条
                },
                data: [
                    { value: 20, name: "云南" },
                    { value: 26, name: "北京" },
                    { value: 24, name: "山东" },
                    { value: 25, name: "河北" },
                    { value: 20, name: "江苏" },
                    { value: 25, name: "浙江" },
                    { value: 30, name: "四川" },
                    { value: 42, name: "湖北" }
                 ]
            }
        ]
    };
 
    // 把配置给实例对象
    myChart.setOption(option);
​
    // 让图表跟随屏幕自适应
    window.addEventListener("resize", function() {
        myChart.resize();
    });
})();

中国地图(扩展)

参考社区的例子:https://gallery.echartsjs.com/editor.html?c=x0-ExSkZDM (模拟飞机航线)

实现步骤:

  • 第一需要下载 china.js 提供中国地图的 js 文件

  • 第二个因为里面代码比较多,我们新建一个新的js文件 myMap.js 引入

  • 使用社区提供的配置即可。

<body>
    <script src="js/echarts.min.js"></script>
    <script src="js/index.js"></script>
    <section class="mainbox">
        <!-- 左侧盒子 -->
        <div class="column">...</div>
        <!-- 中间盒子 -->
        <div class="no">...</div>
        <div class="map">
            <div class="map1"></div>
            <div class="map2"></div>
            <div class="map3"></div>
            <div class="chart">地图模块</div>
        </div>
        <!-- 右侧盒子 -->
        <div class="column">...</div>
    </section>
</body>
/* index.js */
​
/* 中国地图:模拟飞行路线模块 */
(function() {
    var myChart = echarts.init(document.querySelector(".map .chart"));
    var geoCoordMap = {
        上海: [121.4648, 31.2891],
        东莞: [113.8953, 22.901],
        东营: [118.7073, 37.5513],
        中山: [113.4229, 22.478],
        临汾: [111.4783, 36.1615],
        临沂: [118.3118, 35.2936],
        丹东: [124.541, 40.4242],
        丽水: [119.5642, 28.1854],
        乌鲁木齐: [87.9236, 43.5883],
        佛山: [112.8955, 23.1097],
        保定: [115.0488, 39.0948],
        兰州: [103.5901, 36.3043],
        包头: [110.3467, 41.4899],
        北京: [116.4551, 40.2539],
        北海: [109.314, 21.6211],
        南京: [118.8062, 31.9208],
        南宁: [108.479, 23.1152],
        南昌: [116.0046, 28.6633],
        南通: [121.1023, 32.1625],
        厦门: [118.1689, 24.6478],
        台州: [121.1353, 28.6688],
        合肥: [117.29, 32.0581],
        呼和浩特: [111.4124, 40.4901],
        咸阳: [108.4131, 34.8706],
        哈尔滨: [127.9688, 45.368],
        唐山: [118.4766, 39.6826],
        嘉兴: [120.9155, 30.6354],
        大同: [113.7854, 39.8035],
        大连: [122.2229, 39.4409],
        天津: [117.4219, 39.4189],
        太原: [112.3352, 37.9413],
        威海: [121.9482, 37.1393],
        宁波: [121.5967, 29.6466],
        宝鸡: [107.1826, 34.3433],
        宿迁: [118.5535, 33.7775],
        常州: [119.4543, 31.5582],
        广州: [113.5107, 23.2196],
        廊坊: [116.521, 39.0509],
        延安: [109.1052, 36.4252],
        张家口: [115.1477, 40.8527],
        徐州: [117.5208, 34.3268],
        德州: [116.6858, 37.2107],
        惠州: [114.6204, 23.1647],
        成都: [103.9526, 30.7617],
        扬州: [119.4653, 32.8162],
        承德: [117.5757, 41.4075],
        拉萨: [91.1865, 30.1465],
        无锡: [120.3442, 31.5527],
        日照: [119.2786, 35.5023],
        昆明: [102.9199, 25.4663],
        杭州: [119.5313, 29.8773],
        枣庄: [117.323, 34.8926],
        柳州: [109.3799, 24.9774],
        株洲: [113.5327, 27.0319],
        武汉: [114.3896, 30.6628],
        汕头: [117.1692, 23.3405],
        江门: [112.6318, 22.1484],
        沈阳: [123.1238, 42.1216],
        沧州: [116.8286, 38.2104],
        河源: [114.917, 23.9722],
        泉州: [118.3228, 25.1147],
        泰安: [117.0264, 36.0516],
        泰州: [120.0586, 32.5525],
        济南: [117.1582, 36.8701],
        济宁: [116.8286, 35.3375],
        海口: [110.3893, 19.8516],
        淄博: [118.0371, 36.6064],
        淮安: [118.927, 33.4039],
        深圳: [114.5435, 22.5439],
        清远: [112.9175, 24.3292],
        温州: [120.498, 27.8119],
        渭南: [109.7864, 35.0299],
        湖州: [119.8608, 30.7782],
        湘潭: [112.5439, 27.7075],
        滨州: [117.8174, 37.4963],
        潍坊: [119.0918, 36.524],
        烟台: [120.7397, 37.5128],
        玉溪: [101.9312, 23.8898],
        珠海: [113.7305, 22.1155],
        盐城: [120.2234, 33.5577],
        盘锦: [121.9482, 41.0449],
        石家庄: [114.4995, 38.1006],
        福州: [119.4543, 25.9222],
        秦皇岛: [119.2126, 40.0232],
        绍兴: [120.564, 29.7565],
        聊城: [115.9167, 36.4032],
        肇庆: [112.1265, 23.5822],
        舟山: [122.2559, 30.2234],
        苏州: [120.6519, 31.3989],
        莱芜: [117.6526, 36.2714],
        菏泽: [115.6201, 35.2057],
        营口: [122.4316, 40.4297],
        葫芦岛: [120.1575, 40.578],
        衡水: [115.8838, 37.7161],
        衢州: [118.6853, 28.8666],
        西宁: [101.4038, 36.8207],
        西安: [109.1162, 34.2004],
        贵阳: [106.6992, 26.7682],
        连云港: [119.1248, 34.552],
        邢台: [114.8071, 37.2821],
        邯郸: [114.4775, 36.535],
        郑州: [113.4668, 34.6234],
        鄂尔多斯: [108.9734, 39.2487],
        重庆: [107.7539, 30.1904],
        金华: [120.0037, 29.1028],
        铜川: [109.0393, 35.1947],
        银川: [106.3586, 38.1775],
        镇江: [119.4763, 31.9702],
        长春: [125.8154, 44.2584],
        长沙: [113.0823, 28.2568],
        长治: [112.8625, 36.4746],
        阳泉: [113.4778, 38.0951],
        青岛: [120.4651, 36.3373],
        韶关: [113.7964, 24.7028]
    };
​
    var XAData = [
        [{ name: "西安" }, { name: "拉萨", value: 100 }],
        [{ name: "西安" }, { name: "上海", value: 100 }],
        [{ name: "西安" }, { name: "广州", value: 100 }],
        [{ name: "西安" }, { name: "西宁", value: 100 }],
        [{ name: "西安" }, { name: "银川", value: 100 }]
    ];
​
    var XNData = [
        [{ name: "西宁" }, { name: "北京", value: 100 }],
        [{ name: "西宁" }, { name: "上海", value: 100 }],
        [{ name: "西宁" }, { name: "广州", value: 100 }],
        [{ name: "西宁" }, { name: "西安", value: 100 }],
        [{ name: "西宁" }, { name: "银川", value: 100 }]
    ];
​
    var YCData = [
        [{ name: "拉萨" }, { name: "潍坊", value: 100 }],
        [{ name: "拉萨" }, { name: "哈尔滨", value: 100 }],
        [{ name: "银川" }, { name: "上海", value: 100 }],
        [{ name: "银川" }, { name: "西安", value: 100 }],
        [{ name: "银川" }, { name: "西宁", value: 100 }]
    ];
​
    var planePath =
        "path://M1705.06,1318.313v-89.254l-319.9-221.799l0.073-208.063c0.521-84.662-26.629-121.796-63.961-121.491c-37.332-0.305-64.482,36.829-63.961,121.491l0.073,208.063l-319.9,221.799v89.254l330.343-157.288l12.238,241.308l-134.449,92.931l0.531,42.034l175.125-42.917l175.125,42.917l0.531-42.034l-134.449-92.931l12.238-241.308L1705.06,1318.313z";
    //var planePath = 'arrow';
    var convertData = function(data) {
        var res = [];
        for (var i = 0; i < data.length; i++) {
            var dataItem = data[i];
​
            var fromCoord = geoCoordMap[dataItem[0].name];
            var toCoord = geoCoordMap[dataItem[1].name];
            if (fromCoord && toCoord) {
                res.push({
                    fromName: dataItem[0].name,
                    toName: dataItem[1].name,
                    coords: [fromCoord, toCoord],
                    value: dataItem[1].value
                });
            }
        }
        return res;
    };
​
    var color = ["#a6c84c", "#ffa022", "#46bee9"]; //航线的颜色
    var series = [];
    [
        ["西安", XAData],
        ["西宁", XNData],
        ["银川", YCData]
    ].forEach(function(item, i) {
        series.push(
            {
                name: item[0] + " Top3",
                type: "lines",
                zlevel: 1,
                effect: {
                    show: true,
                    period: 6,
                    trailLength: 0.7,
                    color: "red", //arrow箭头的颜色
                    symbolSize: 3
                },
                lineStyle: {
                    normal: {
                        color: color[i],
                        width: 0,
                        curveness: 0.2
                    }
                },
                data: convertData(item[1])
            },
            {
                name: item[0] + " Top3",
                type: "lines",
                zlevel: 2,
                symbol: ["none", "arrow"],
                symbolSize: 10,
                effect: {
                    show: true,
                    period: 6,
                    trailLength: 0,
                    symbol: planePath,
                    symbolSize: 15
                },
                lineStyle: {
                    normal: {
                        color: color[i],
                        width: 1,
                        opacity: 0.6,
                        curveness: 0.2
                    }
                },
                data: convertData(item[1])
            },
            {
                name: item[0] + " Top3",
                type: "effectScatter",
                coordinateSystem: "geo",
                zlevel: 2,
                rippleEffect: {
                    brushType: "stroke"
                },
                label: {
                    normal: {
                        show: true,
                        position: "right",
                        formatter: "{b}"
                    }
                },
                symbolSize: function(val) {
                    return val[2] / 8;
                },
                itemStyle: {
                    normal: {
                        color: color[i]
                    },
                    emphasis: {
                        areaColor: "#2B91B7"
                    }
                },
                data: item[1].map(function(dataItem) {
                    return {
                        name: dataItem[1].name,
                        value: geoCoordMap[dataItem[1].name].concat([dataItem[1].value])
                    };
                })
            }
        );
    });
    var option = {
        tooltip: {
            trigger: "item",
            formatter: function(params, ticket, callback) {
                if (params.seriesType == "effectScatter") {
                    return "线路:" + params.data.name + "" + params.data.value[2];
                } else if (params.seriesType == "lines") {
                    return (
                        params.data.fromName +
                        ">" +
                        params.data.toName +
                        "<br />" +
                        params.data.value
                    );
                } else {
                    return params.name;
                }
            }
        },
        legend: {
            orient: "vertical",
            top: "bottom",
            left: "right",
            data: ["西安 Top3", "西宁 Top3", "银川 Top3"],
            textStyle: {
                color: "#fff"
            },
            selectedMode: "multiple"
        },
        geo: {
            map: "china",
            label: {
                emphasis: {
                    show: true,
                    color: "#fff"
                }
            },
            // 把中国地图放大了1.2倍
            zoom: 1.2,
            roam: true,
            itemStyle: {
                normal: {
                    // 地图省份的背景颜色
                    areaColor: "rgba(20, 41, 87,0.6)",
                    borderColor: "#195BB9",
                    borderWidth: 1
                },
                emphasis: {
                    areaColor: "#2B91B7"
                }
            }
        },
        series: series
    };
    myChart.setOption(option);
    // 监听浏览器缩放,图表对象调用缩放resize函数
    window.addEventListener("resize", function() {
        myChart.resize();
    });
})();

四、整体代码

index.html

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>数据可视化</title>
    <link rel="stylesheet" href="css/index.css" />
  </head>
  <body>
    <!-- 头部的盒子 -->
    <header>
      <h1>数据可视化-ECharts</h1>
      <div class="showTime"></div>
      <script>
        var t = null;
        t = setTimeout(time, 1000); //開始运行
        function time() {
          clearTimeout(t); //清除定时器
          dt = new Date();
          var y = dt.getFullYear();
          var mt = dt.getMonth() + 1;
          var day = dt.getDate();
          var h = dt.getHours(); //获取时
          var m = dt.getMinutes(); //获取分
          var s = dt.getSeconds(); //获取秒
          document.querySelector(".showTime").innerHTML =
            "当前时间:" +
            y +
            "年" +
            mt +
            "月" +
            day +
            "-" +
            h +
            "时" +
            m +
            "分" +
            s +
            "秒";
          t = setTimeout(time, 1000); //设定定时器,循环运行
        }
      </script>
      &
    </header>
​
    <!-- 页面主体部分 -->
    <section class="mainbox">
      <div class="column">
        <div class="panel bar">
          <h2>柱形图-就业行业</h2>
          <div class="chart"></div>
          <div class="panel-footer"></div>
        </div>
        <div class="panel line">
          <h2>
            折线图-人员变化 <a href="javacript:;">2020</a
            ><a href="javascript:;">2021</a>
          </h2>
          <div class="chart">图表</div>
          <div class="panel-footer"></div>
        </div>
        <div class="panel pie">
          <h2>饼形图-年龄分布</h2>
          <div class="chart">图表</div>
          <div class="panel-footer"></div>
        </div>
      </div>
      <div class="column">
        <!-- no模块制作 -->
        <div class="no">
          <div class="no-hd">
            <ul>
              <li>125811</li>
              <li>100000</li>
            </ul>
          </div>
          <div class="no-bd">
            <ul>
              <li>前端需求人数</li>
              <li>市场供应人数</li>
            </ul>
          </div>
        </div>
        <!-- 地图模块 -->
        <div class="map">
          <div class="map1"></div>
          <div class="map2"></div>
          <div class="map3"></div>
          <div class="chart"></div>
        </div>
      </div>
      <div class="column">
        <div class="panel bar2">
          <h2>柱形图-就业行业</h2>
          <div class="chart">图表</div>
          <div class="panel-footer"></div>
        </div>
        <div class="panel line2">
          <h2>折线图-播放量</h2>
          <div class="chart">图表</div>
          <div class="panel-footer"></div>
        </div>
        <div class="panel pie2">
          <h2>饼形图-地区分布</h2>
          <div class="chart">图表</div>
          <div class="panel-footer"></div>
        </div>
      </div>
    </section>
    <script src="js/flexible.js"></script>
    <script src="js/echarts.min.js"></script>
    <!-- 先引入jquery -->
    <script src="js/jquery.js"></script>
    <!-- 必须先引入china.js 这个文件 因为中国地图需要 -->
    <script src="js/china.js"></script>
    <script src="js/index.js"></script>
  </body>
</html>
​

index.js

这里就不重复赘述,将上面提到的js代码都放到index.js里即可

index.less

// css 初始化
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
li {
  list-style: none;
}
/* 声明字体*/
@font-face {
  font-family: electronicFont;
  src: url(../font/DS-DIGIT.TTF);
}
body {
  background: url(../images/bg.jpg) no-repeat top center;
  line-height: 1.15;
}
header {
  position: relative;
  height: 1.25rem;
  background: url(../images/head_bg.png) no-repeat;
  background-size: 100% 100%;
  h1 {
    font-size: 0.475rem;
    color: #fff;
    text-align: center;
    line-height: 1rem;
  }
  .showTime {
    position: absolute;
    right: 0.375rem;
    top: 0;
    line-height: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.25rem;
  }
}
​
// 页面主体盒子
.mainbox {
  display: flex;
  min-width: 1024px;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0.125rem 0.125rem 0;
  .column {
    flex: 3;
  }
  .column:nth-child(2) {
    flex: 5;
    margin: 0 0.125rem 0.1875rem;
    overflow: hidden;
  }
  .panel {
    position: relative;
    height: 3.875rem;
    padding: 0 0.1875rem 0.5rem;
    border: 1px solid rgba(25, 186, 139, 0.17);
    margin-bottom: 0.1875rem;
    background: url(../images/line\(1\).png) rgba(255, 255, 255, 0.03);
    &::before {
      position: absolute;
      top: 0;
      left: 0;
      width: 10px;
      height: 10px;
      border-left: 2px solid #02a6b5;
      border-top: 2px solid #02a6b5;
      content: "";
    }
    &::after {
      position: absolute;
      top: 0;
      right: 0;
      width: 10px;
      height: 10px;
      border-right: 2px solid #02a6b5;
      border-top: 2px solid #02a6b5;
      content: "";
    }
    .panel-footer {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      &::before {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 10px;
        height: 10px;
        border-left: 2px solid #02a6b5;
        border-bottom: 2px solid #02a6b5;
        content: "";
      }
      &::after {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 10px;
        height: 10px;
        border-right: 2px solid #02a6b5;
        border-bottom: 2px solid #02a6b5;
        content: "";
      }
    }
    h2 {
      height: 0.6rem;
      color: #fff;
      line-height: 0.6rem;
      text-align: center;
      font-size: 0.25rem;
      font-weight: 400;
      a {
        color: #fff;
        text-decoration: none;
        margin: 0 0.125rem;
      }
    }
    .chart {
      height: 3rem;
    }
  }
}
// no数字模块
.no {
  background: rgba(101, 132, 226, 0.1);
  padding: 0.1875rem;
  .no-hd {
    position: relative;
    border: 1px solid rgba(25, 186, 139, 0.17);
    &::before {
      position: absolute;
      top: 0;
      left: 0;
      content: "";
      width: 30px;
      height: 10px;
      border-top: 2px solid #02a6b5;
      border-left: 2px solid #02a6b5;
    }
    &::after {
      position: absolute;
      bottom: 0;
      right: 0;
      content: "";
      width: 30px;
      height: 10px;
      border-right: 2px solid #02a6b5;
      border-bottom: 2px solid #02a6b5;
    }
    ul {
      display: flex;
      li {
        position: relative;
        flex: 1;
        line-height: 1rem;
        font-size: 0.875rem;
        color: #ffeb7b;
        text-align: center;
        font-family: "electronicFont";
        &::after {
          content: "";
          position: absolute;
          top: 25%;
          right: 0;
          height: 50%;
          width: 1px;
          background: rgba(255, 255, 255, 0.2);
        }
      }
    }
  }
  .no-bd {
    ul {
      display: flex;
      li {
        flex: 1;
        text-align: center;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.225rem;
        height: 0.5rem;
        line-height: 0.5rem;
        padding-top: 0.125rem;
      }
    }
  }
}
.map {
  position: relative;
  height: 10.125rem;
  .map1 {
    width: 6.475rem;
    height: 6.475rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(../images/map.png);
    background-size: 100% 100%;
    opacity: 0.3;
  }
  .map2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8.0375rem;
    height: 8.0375rem;
    background: url(../images/lbx.png);
    animation: rotate1 15s linear infinite;
    opacity: 0.6;
    background-size: 100% 100%;
  }
​
  .map3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 7.075rem;
    height: 7.075rem;
    background: url(../images/jt.png);
    animation: rotate2 10s linear infinite;
    opacity: 0.6;
    background-size: 100% 100%;
  }
  .chart {
    position: absolute;
    top: 0;
    left: 0;
    // background-color: pink;
    width: 100%;
    height: 10.125rem;
  }
  @keyframes rotate1 {
    form {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  @keyframes rotate2 {
    form {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
      transform: translate(-50%, -50%) rotate(-360deg);
    }
  }
}
​
/* 约束屏幕尺寸: 让屏幕缩放只限于这个尺寸,再大/再小于这个尺寸都不能实现js的图标自适应 */
@media screen and (max-width: 1024px) {
  html {
    font-size: 42px !important;
  }
}
@media screen and (min-width: 1920px) {
  html {
    font-size: 80px !important;
  }
}

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值