• 基于Echarts实现可视化数据大屏大数据可视化


    前言

    🚀 基于 Echarts 实现可视化数据大屏响应式展示效果的源码,,基于html+css+javascript+echarts制作, 可以在此基础上重新开发。

    本项目中使用的是echarts图表库,ECharts 提供了常规的折线图、柱状图、散点图、饼图、K线图,用于统计的盒形图,用于地理数据可视化的地图、热力图、线图,用于关系数据可视化的关系图、treemap、旭日图,多维数据可视化的平行坐标,还有用于 BI 的漏斗图,仪表盘,并且支持图与图之间的混搭。


    ⚽精彩专栏推荐👇🏻👇🏻👇🏻

    【作者主页——🔥获取更多优质源码】

    【1000套 毕设项目精品实战案例】

    【 20套 VUE+Echarts 大数据可视化源码】

    【150套 HTML+ Echarts大数据可视化源码 】


    一、Echart是什么

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

    二、ECharts入门教程

    5 分钟上手ECharts


    三、作品演示

    在这里插入图片描述


    四、代码实现

    1.HTML

    doctype html>
    <html>
    <head>
    doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <meta name="description" content="">
    <meta name="keywords" content="">
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
    <title>大数据可视化title>
    <link type="text/css" href="css/public.css" rel="stylesheet">
    <link type="text/css" href="css/icon.css" rel="stylesheet">
    <link type="text/css" href="css/index.css" rel="stylesheet">
    <script type="text/javascript">
            document.documentElement.style.fontSize = document.documentElement.clientWidth /768*100 + 'px';
    script>
    
    <script src="js/echarts.min.js">script>
    head>
    <style>
    .abc{ 
    
    }
    
    style>
    
    <body>
    <div class="bg">
    	<div class="title">大数据可视化div>
        <div class="leftMain">
        	<div class="leftMain_top">
            	<div class="leftMain_topIn">
                	<ul>
                    	<li>
                            <div class="liIn">
                                <h3>这里是标题1h3>
                                <p class="shu"><span class="shu1">6890.69span><i>i>p>
                                <div class="zi"><span class="span1">小标题:文字span><span>小标题:文字span>div>
                                <span class="border_bg_leftTop">span>
                                <span class="border_bg_rightTop">span>
                                <span class="border_bg_leftBottom">span>
                                <span class="border_bg_rightBottom">span>
                            div>
                        li>
                    	<li>
                            <div class="liIn">
                                <h3>这里是标题2h3>
                                <p class="shu"><span class="shu2">6090.99span><i>i>p>
                                <div class="zi"><span class="span1">小标题:文字span><span>小标题:文字span>div>
                                <span class="border_bg_leftTop">span>
                                <span class="border_bg_rightTop">span>
                                <span class="border_bg_leftBottom">span>
                                <span class="border_bg_rightBottom">span>
                            div>
                        li>
                    	<li>
                            <div class="liIn">
                                <h3>这里是标题3h3>
                                <p class="shu"><span class="shu3">2890.39span><i>i>p>
                                <div class="zi"><span class="span1">小标题:文字span><span>小标题:文字span>div>
                                <span class="border_bg_leftTop">span>
                                <span class="border_bg_rightTop">span>
                                <span class="border_bg_leftBottom">span>
                                <span class="border_bg_rightBottom">span>
                            div>
                        li>
                    	<li>
                            <div class="liIn">
                                <h3>这里是标题4h3>
                                <p class="shu"><span class="shu4">7590.15span><i>i>p>
                                <div class="zi"><span class="span1">小标题:文字span><span>小标题:文字span>div>
                                <span class="border_bg_leftTop">span>
                                <span class="border_bg_rightTop">span>
                                <span class="border_bg_leftBottom">span>
                                <span class="border_bg_rightBottom">span>
                            div>
                        li>
                    ul>
                div>
            div>
            <div class="leftMain_middle">
            	<div class="leftMain_middle_left">
                	<div class="leftMain_middle_leftIn">
                    	<h3>这里是标题h3>
                        
                        <div class="biaoge" style="width:100%; height:25vh" id="chartmain">div>
                        <script type="text/javascript">
    					//window.onload = function () {
    								//指定图表的配置项和数据
    								var dataAxis = ['1日', '2日', '3日', '4日', '5日', '6日', '7日', '8日', '9日', '10日', '11日', '12日', '13日', '14日', '15日'];
    								var data = [220, 182, 191, 234, 290, 330, 310, 123, 442, 321, 90, 149, 210, 122, 200];
    								var yMax = 500;
    								var dataShadow = [];
    								
    								for (var i = 0; i < data.length; i++) {
    									dataShadow.push(yMax);
    								}
    								
    								option = {
    									title: {
    										text: '',
    										subtext: ''
    									},
    									grid:{
    										x:40,
    										y:40,
    										x2:20,
    										y2:20,
    										
    									},
    									xAxis: {
    										data: dataAxis,
    										axisLabel: {
    											/*inside: true,*/
    											interval:0,
    											textStyle: {
    												color: '#fff',
    												fontSize: 12
    												
    											}
    										},
    										axisTick: {
    											show: false,
    										},
    										axisLine: {
    											show: true,
    											symbol:['none', 'arrow'],
    											symbolOffset: 12,
    											lineStyle:{
    												color: '#fff',
    											}
    										},
    										z: 10
    									},
    									yAxis: {
    										type: 'value',
    										name: '单位:元',
    										axisLine: {
    											show: true,
    											symbol: ['none', 'arrow'],
    											symbolOffset: 12,
    											lineStyle:{
    												color: '#fff',
    											}
    										},
    										axisTick: {
    											show: false
    										},
    										axisLabel: {
    											textStyle: {
    												color: '#fff',
    												fontSize: 12
    											}
    										}
    									},
    
    									dataZoom: [
    										{
    											type: 'inside'
    										}
    									],
    									series: [
    										{ // For shadow
    											type: 'bar',
    											itemStyle: {
    												color: 'rgba(0,0,0,0.05)'
    											},
    											barGap: '-100%',
    											barCategoryGap: '40%',
    											data: dataShadow,
    											animation: false
    										},
    										{
    											type: 'bar',
    											itemStyle: {
    												color: new echarts.graphic.LinearGradient(
    													0, 0, 0, 1,
    													[
    														{offset: 0, color: '#0efdff'},
    														{offset: 0.5, color: '#188df0'},
    														{offset: 1, color: '#188df0'}
    													]
    												)
    											},
    											emphasis: {
    												itemStyle: {
    													color: new echarts.graphic.LinearGradient(
    														0, 0, 0, 1,
    														[
    															{offset: 0, color: '#2378f7'},
    															{offset: 0.7, color: '#2378f7'},
    															{offset: 1, color: '#0efdff'}
    														]
    													)
    												}
    											},
    											data: data
    										}
    									]
    								};
    								
    								// Enable data zoom when user click bar.
    								/*var zoomSize = 6;
    								myChart.on('click', function (params) {
    									console.log(dataAxis[Math.max(params.dataIndex - zoomSize / 2, 0)]);
    									myChart.dispatchAction({
    										type: 'dataZoom',
    										startValue: dataAxis[Math.max(params.dataIndex - zoomSize / 2, 0)],
    										endValue: dataAxis[Math.min(params.dataIndex + zoomSize / 2, data.length - 1)]
    									});
    								});*/
    							
    								//获取dom容器
    								var myChart = echarts.init(document.getElementById('chartmain'));
    								// 使用刚指定的配置项和数据显示图表。
    								myChart.setOption(option);
    						//};
    					script>
                        <span class="border_bg_leftTop">span>
                        <span class="border_bg_rightTop">span>
                        <span class="border_bg_leftBottom">span>
                        <span class="border_bg_rightBottom">span>
                    div>
                div>
            	<div class="leftMain_middle_right">
                	<div class="leftMain_middle_rightIn">
                    	<h3>这里是标题h3>
                        <div class="biaoge biaoge_pai" style="width:100%; height:25vh">
                        	<div class="biaoge_paiIn">
                            	<ul>
                                	<li>
                                    	<div class="liIn">
                                        	<div class="liIn_left"><span class="bot">span><span class="zi">第一名span>div>
                                            <div class="liIn_line"><div class="line_lineIn" style="width:98.5%;">div>div>
                                            <p class="num">98.5%p>
                                        div>
                                    li>
                                 	<li>
                                    	<div class="liIn liIn2">
                                        	<div class="liIn_left"><span class="bot">span><span class="zi">第二名span>div>
                                            <div class="liIn_line"><div class="line_lineIn" style="width:88.5%;">div>div>
                                            <p class="num">88.5%p>
                                        div>
                                    li>
                                	<li>
                                    	<div class="liIn liIn3">
                                        	<div class="liIn_left"><span class="bot">span><span class="zi">第三名span>div>
                                            <div class="liIn_line"><div class="line_lineIn" style="width:68.5%;">div>div>
                                            <p class="num">68.5%p>
                                        div>
                                    li>
                                	<li>
                                    	<div class="liIn liIn4">
                                        	<div class="liIn_left"><span class="bot">span><span class="zi">第四名span>div>
                                            <div class="liIn_line"><div class="line_lineIn" style="width:40.5%;">div>div>
                                            <p class="num">40.5%p>
                                        div>
                                    li>
                                	<li>
                                    	<div class="liIn liIn5">
                                        	<div class="liIn_left"><span class="bot">span><span class="zi">第五名span>div>
                                            <div class="liIn_line"><div class="line_lineIn" style="width:22.5%;">div>div>
                                            <p class="num">22.5%p>
                                        div>
                                    li>
                                	<li>
                                    	<div class="liIn liIn6">
                                        	<div class="liIn_left"><span class="bot">span><span class="zi">第六名span>div>
                                            <div class="liIn_line"><div class="line_lineIn" style="width:10.5%;">div>div>
                                            <p class="num">10.5%p>
                                        div>
                                    li>
                               ul>
                            div>
                        div>
                        <span class="border_bg_leftTop">span>
                        <span class="border_bg_rightTop">span>
                        <span class="border_bg_leftBottom">span>
                        <span class="border_bg_rightBottom">span>
                    div>
                div>
            div>
            <div class="leftMain_middle">
            	<div class="leftMain_middle_left">
                	<div class="leftMain_middle_leftIn">
                    	<h3>这里是标题h3>
                        <div class="biaoge" style="width:100%; height:25vh" id="chartmain_zhe">div>
                        <script type="text/javascript">
    					//window.onload = function (){
    								//指定图表的配置项和数据
    								
    					option = {
    						title: {
    							text: ''
    						},
    						tooltip: {
    							trigger: 'axis'
    						},
    						legend: {
    							textStyle: {
    								color: '#fff',
    								fontSize: 12,
    							},
    							right:'10%',
    							data: ['折线一', '折线二']
    						},
    						grid:{
    								x:40,
    								y:40,
    								x2:20,
    								y2:20,
    							},
    						toolbox: {
    							feature: {
    								//saveAsImage: {}
    							}
    						},
    						xAxis: {
    							type: 'category',
    							boundaryGap: false,
    							axisLabel: {
    											/*inside: true,*/
    											interval:0,
    											textStyle: {
    												color: '#fff',
    												fontSize: 12
    												
    											}
    										},
    										axisTick: {
    											show: false,
    										},
    										axisLine: {
    											show: true,
    											symbol:['none', 'arrow'],
    											symbolOffset: 12,
    											lineStyle:{
    												color: '#fff',
    											}
    										},
    							data: ['00:00', '02:00', '04:00', '06:00', '08:00', '10:00', '12:00']
    						},
    						yAxis: {
    							type: 'value',
    							
    							axisLine: {
    								show: true,
    								symbol: ['none', 'arrow'],
    								symbolOffset: 12,
    								lineStyle:{
    									color: '#fff',
    								}
    							},
    							axisTick: {
    								show: false
    							},
    							axisLabel: {
    								textStyle: {
    									color: '#fff',
    									fontSize: 12
    								}
    							}
    						},
    						series: [
    							{
    								name: '折线一',
    								type: 'line',
    								stack: '总量',
    								data: [280, 102, 191, 134, 390, 230, 210],
    								itemStyle: {
    									 normal: {
    									   color: "#0efdff",//折线点的颜色
    									   lineStyle: {
    									   color: "#0efdff",//折线的颜色
    									   width:2,
    									  }
    									},
    								}
    							},
    							{
    								name: '折线二',
    								type: 'line',
    								stack: '总量',
    								data: [100, 132, 131, 234, 290, 330, 110]
    							},
    						]
    					};		
    								//获取dom容器
    								var myChart = echarts.init(document.getElementById('chartmain_zhe'));
    								// 使用刚指定的配置项和数据显示图表。
    								myChart.setOption(option);
    						//};
    					script>
                        <span class="border_bg_leftTop">span>
                        <span class="border_bg_rightTop">span>
                        <span class="border_bg_leftBottom">span>
                        <span class="border_bg_rightBottom">span>
                    div>
                div>
            	<div class="leftMain_middle_right">
                	<div class="leftMain_middle_rightIn">
                    	<h3>这里是标题h3>
                        <div class="biaoge biaoge_bi" style="width:100%; height:25vh">
                        	<ul>
                            	<li>
                                	<div class="liIn">
                                    	<p class="shu shu1">23p>
                                        <p class="zi">今日收益比例p>
                                    div>
                                li>
                            	<li>
                                	<div class="liIn">
                                    	<p class="shu shu2">107p>
                                        <p class="zi">本月收益比例p>
                                    div>
                                li>
                            	<li>
                                	<div class="liIn">
                                    	<p class="shu shu3">107p>
                                        <p class="zi">历史收益比例p>
                                    div>
                                li>
                            	<li>
                                	<div class="liIn">
                                    	<p class="shu shu4">23p>
                                        <p class="zi">今日收益比例p>
                                    div>
                                li>
                            	<li>
                                	<div class="liIn">
                                    	<p class="shu shu5">23p>
                                        <p class="zi">本月收益比例p>
                                    div>
                                li>
                            	<li>
                                	<div class="liIn">
                                    	<p class="shu shu6">23p>
                                        <p class="zi">历史收益比例p>
                                    div>
                                li>
                            ul>
                        
                        div>
                        <span class="border_bg_leftTop">span>
                        <span class="border_bg_rightTop">span>
                        <span class="border_bg_leftBottom">span>
                        <span class="border_bg_rightBottom">span>
                    div>
                div>
            div>
        div>
        <div class="rightMain">
            <div class="rightMain_top">
                <div class="rightMain_topIn">
                    <h3>这里是标题h3>
                    <div class="biaoge" style="width:100%; height:30vh" id="chartmain_bing">div>
                    <script type="text/javascript">
    					option = {
    						title: {
    							text: '数据情况统计',
    							subtext: '',
    							left: 'right',
    							textStyle: {
    								color: '#fff',
    								fontSize: 12
    							}
    						},
    						tooltip: {
    							trigger: 'item',
    							formatter: '{a} 
    {b} : {c} ({d}%)'
    }, legend: { // orient: 'vertical', // top: 'middle', type: 'scroll', orient: 'vertical', right: 10, top: 40, bottom: 20, left: 'right', data: ['西凉', '益州', '兖州', '荆州', '幽州'], textStyle: { color: '#fff', fontSize: 12 } }, grid:{ x:'-10%', y:40, x2:20, y2:20, }, color : [ '#09d0fb', '#f88cfb', '#95f8fe', '#f9f390', '#ecfeb7' ], series: [ { type: 'pie', radius: '65%', center: ['50%', '50%'], selectedMode: 'single', data: [ {value: 1548, name: '幽州', }, {value: 535, name: '荆州'}, {value: 510, name: '兖州'}, {value: 634, name: '益州'}, {value: 735, name: '西凉'} ], emphasis: { itemStyle: { shadowBlur: 10, shadowOffsetX: 0, shadowColor: 'rgba(0, 0, 0, 0.5)' } } } ] }; //获取dom容器 var myChart = echarts.init(document.getElementById('chartmain_bing')); // 使用刚指定的配置项和数据显示图表。 myChart.setOption(option);
    script> <span class="border_bg_leftTop">span> <span class="border_bg_rightTop">span> <span class="border_bg_leftBottom">span> <span class="border_bg_rightBottom">span> div> div> <div class="rightMain_bottom"> <div class="rightMain_bottomIn"> <h3>这里是标题h3> <div class="biaoge biaoge_list" style="width:100%; height:36vh"> <div class="biaoge_listIn"> <ul class="ul_title"> <li>用户li> <li>类型号li> <li>类别一li> <li>类别二li> <li>类别三li> ul> <div class="ul_list"> <div class="ul_listIn"> <ul class="ul_con"> <li>张三li> <li>11li> <li>类别一li> <li>类别二li> <li>类别三li> ul> <ul class="ul_con"> <li>张三li> <li>12li> <li>类别一li> <li>类别二li> <li>类别三li> ul> <ul class="ul_con"> <li>张三li> <li>13li> <li>类别一li> <li>类别二li> <li>类别三li> ul> <ul class="ul_con"> <li>张三li> <li>14li> <li>类别一li> <li>类别二li> <li>类别三li> ul> <ul class="ul_con"> <li>张三li> <li>15li> <li>类别一li> <li>类别二li> <li>类别三li> ul> <ul class="ul_con"> <li>张三li> <li>16li> <li>类别一li> <li>类别二li> <li>类别三li> ul> <ul class="ul_con"> <li>张三li> <li>11li> <li>类别一li> <li>类别二li> <li>类别三li> ul> <ul class="ul_con"> <li>张三li> <li>12li> <li>类别一li> <li>类别二li> <li>类别三li> ul> <ul class="ul_con"> <li>张三li> <li>13li> <li>类别一li> <li>类别二li> <li>类别三li> ul> <ul class="ul_con"> <li>张三li> <li>14li> <li>类别一li> <li>类别二li> <li>类别三li> ul> <ul class="ul_con"> <li>张三li> <li>15li> <li>类别一li> <li>类别二li> <li>类别三li> ul> <ul class="ul_con"> <li>张三li> <li>16li> <li>类别一li> <li>类别二li> <li>类别三li> ul> div> div> div> div> <span class="border_bg_leftTop">span> <span class="border_bg_rightTop">span> <span class="border_bg_leftBottom">span> <span class="border_bg_rightBottom">span> div> div> div> <div style="clear:both;">div> div> <script src="js/jquery-1.11.0.min.js" type="text/javascript">script> <script src="js/jquery.numscroll.js" type="text/javascript" charset="utf-8">script> <script type="text/javascript"> $(".shu1").numScroll(); $(".shu2").numScroll(); $(".shu3").numScroll(); $(".shu4").numScroll(); $(".shu5").numScroll(); $(".shu6").numScroll(); /*$(".num2").numScroll({ time:5000 });*/ script> body> html>
    • 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

    2.CSS

    
    
    @charset "UTF-8";
    /* CSS Document */
    .bg{
    	margin:0 auto;
        width:100%;
        min-height:100vh;
        background:url(../images/bg2.jpg) no-repeat;
        background-size: cover;
        padding-top:0rem;
    	padding:0rem 0.2rem;
    	
    }
    /*.conIn{
    	display:flex;
    	display: -webkit-flex;}*/
    .title{
    	width:100%;
    	font-size:0.12rem;
    	line-height:0.3rem;
    	color:rgba(14,253,255,1);
    	text-align:center;
    	font-weight:bold;
    	}	
    	
    .border_bg_leftTop{
    	position:absolute;
    	left:-0.008rem;
    	top:-0.04rem;
    	width:0.37rem;
    	height:0.05rem;
    	display:block;
    	background:#01279d url(../images/title_left_bg.png) no-repeat;
    	background-size:cover;}
    .border_bg_rightTop{
    	position:absolute;
    	right:-0.01rem;
    	top:-0.01rem;
    	width:0.1rem;
    	height:0.1rem;
    	display:block;
    	background:url(../images/border_bg.jpg) no-repeat;
    	background-size:cover;}
    .border_bg_leftBottom{
    	position:absolute;
    	left:-0.008rem;
    	bottom:-0.008rem;
    	width:0.1rem;
    	height:0.1rem;
    	display:block;
    	background:url(../images/border_bg.jpg) no-repeat;
    	background-size:cover;}
    .border_bg_rightBottom{
    	position:absolute;
    	right:-0.01rem;
    	bottom:-0.01rem;
    	width:0.08rem;
    	height:0.08rem;
    	display:block;
    	background:url(../images/title_right_bg.png) no-repeat;
    	background-size:cover;}	
    	
    .leftMain{
    	width:75%;
    	float:left;
    	padding-right:0.1rem;
    	padding-top:0.1rem;
    	}	
    	
    .rightMain{
    	width:25%;
    	float:left;
    	padding-top:0.1rem;}	
    	
    .leftMain_top{
    	width:100%;
    	padding-bottom:0.1rem;}	
    .leftMain_top ul{
    	display:flex;
    	display: -webkit-flex;
    	}	
    .leftMain_top ul li{
    	float:left;
    	width:25%;
    	padding-right:0.1rem;}	
    .leftMain_top ul li:last-child{
    	padding:0;}
    .leftMain_top ul li .liIn{
    	border:0.008rem solid rgba(14,253,255,0.5);
    	width:100%;
    	min-height:60px;
    	position:relative;
    	padding:0.08rem 0.05rem;
    	}	
    .leftMain_top ul li .liIn h3{
    	font-size:0.08rem;
    	color:#fff;
    	margin-bottom:0.05rem;
    	}	
    	
    .leftMain_top ul li .liIn .shu{
    	font-size:0.12rem;
    	color:rgba(14,253,255,1);
    	font-family:dig;
    	margin-bottom:0.02rem;}	
    .leftMain_top ul li .liIn .shu i{
    	font-size:0.04rem;
    	margin-left:0.06rem;
    	font-style:normal;}
    .leftMain_top ul li .liIn .zi{
    	font-size:0.04rem;
    	color:#fff;
    	position:relative;
    	z-index:10;}	
    .leftMain_top ul li .liIn .zi .span1{
    	margin-right:0.1rem;}	
    	
    	
    .leftMain_middle{
    	width:100%;
    	padding-bottom:0.1rem;
    	display:flex;
    	display: -webkit-flex;}	
    	
    .leftMain_middle .leftMain_middle_left{
    	width:60%;
    	padding-right:0.1rem;}	
    .leftMain_middle .leftMain_middle_left .leftMain_middle_leftIn{
    	border:0.008rem solid rgba(14,253,255,0.5);
    	width:100%;
    	min-height:60px;
    	position:relative;
    	padding:0.08rem 0.05rem;
    	}	
    .leftMain_middle .leftMain_middle_left .leftMain_middle_leftIn h3{
    	font-size:0.08rem;
    	color:#fff;
    	margin-bottom:0.05rem;
    	}	
    .leftMain_middle .leftMain_middle_left .leftMain_middle_leftIn .biaoge{
    	min-height:200px;}	
    	
    .leftMain_middle .leftMain_middle_right{
    	width:40%;
    	}	
    .leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn{
    	border:0.008rem solid rgba(14,253,255,0.5);
    	width:100%;
    	min-height:60px;
    	position:relative;
    	padding:0.08rem 0.05rem;
    	}	
    .leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn h3{
    	font-size:0.08rem;
    	color:#fff;
    	margin-bottom:0.05rem;
    	}	
    .leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge{
    	min-height:200px;}	
    /*左边中间部分排行榜*/
    .leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn  .biaoge_pai{
    	width:100%;
    	overflow:hidden;
    	}
    .leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn  .biaoge_pai ul li .liIn{
    	display:flex;
    	display: -webkit-flex;
    	align-items:center;
    	color:#fff;
    	font-size:0.06rem;
    	height:0.18rem;
    	}
    .leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn  .biaoge_pai ul li .liIn .liIn_left{
    	width:25%;	
    	position:relative;
    	padding-left:0.14rem;
    	}
    .leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn  .biaoge_pai ul li .liIn .liIn_left .bot{
    	width:0.08rem;
    	height:0.08rem;
    	background:#f78cf3;
    	border-radius:1000px;
    	display:block;
    	position:absolute;
    	left:0.02rem;
    	top:0;
    	bottom:0;
    	margin:auto 0;
    	}
    .leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn  .biaoge_pai ul li .liIn2 .liIn_left .bot{
    	background:#e7feb8;}
    .leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn  .biaoge_pai ul li .liIn3 .liIn_left .bot{
    	background:#fdea8a;}
    .leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn  .biaoge_pai ul li .liIn4 .liIn_left .bot{
    	background:#8ff9f8;}
    .leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn  .biaoge_pai ul li .liIn5 .liIn_left .bot{
    	background:#d890fa;}
    .leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn  .biaoge_pai ul li .liIn6 .liIn_left .bot{
    	background:#05d1fc;}
    .leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn  .biaoge_pai ul li .liIn .liIn_left zi{
    	}
    .leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn  .biaoge_pai ul li .liIn .liIn_line{
    	width:58%;
    	height:0.08rem;
    	background:rgba(255,255,255,0.5);
    	border-radius:2000px;}
    .leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn  .biaoge_pai ul li .liIn .liIn_line .line_lineIn{
    	width:100%;
    	height:0.08rem;
    	background:#f78cf3;
    	border-radius:100px;
    	-webkit-animation: widthMove1 2s ease-in-out ;} 
    .leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn  .biaoge_pai ul li .liIn2 .liIn_line .line_lineIn{
    	background:#e7feb8;
    	-webkit-animation: widthMove2 2s ease-in-out ;}
    .leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn  .biaoge_pai ul li .liIn3 .liIn_line .line_lineIn{
    	background:#fdea8a;
    	-webkit-animation: widthMove3 2s ease-in-out ;
    	}
    .leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn  .biaoge_pai ul li .liIn4 .liIn_line .line_lineIn{
    	background:#8ff9f8;
    	-webkit-animation: widthMove4 2s ease-in-out ;}
    .leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn  .biaoge_pai ul li .liIn5 .liIn_line .line_lineIn{
    	background:#d890fa;
    	-webkit-animation: widthMove5 2s ease-in-out ;}
    .leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn  .biaoge_pai ul li .liIn6 .liIn_line .line_lineIn{
    	background:#05d1fc;
    	-webkit-animation: widthMove6 2s ease-in-out ;}
    @-webkit-keyframes widthMove1 { 
    	 0% {width:0%; } 
    	 100% { width:98.5%; }
    	 }
    @-webkit-keyframes widthMove2 { 
    	 0% {width:0%; } 
    	 100% { width:88.5%; }
    	 }
    @-webkit-keyframes widthMove3 { 
    	 0% {width:0%; } 
    	 100% { width:68.5%; }
    	 }
    @-webkit-keyframes widthMove4 { 
    	 0% {width:0%; } 
    	 100% { width:40.5%; }
    	 }
    @-webkit-keyframes widthMove5 { 
    	 0% {width:0%; } 
    	 100% { width:22.5%; }
    	 }
    @-webkit-keyframes widthMove6 { 
    	 0% {width:0%; } 
    	 100% { width:10.5%; }
    	 }
    
    .leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn  .biaoge_pai ul li .liIn .num{
    	width:17%;
    	font-family:dig;
    	padding-left:0.02rem;}
    /*左边底部*/
    .leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge_bi ul{
    	display:flex;
    	display: -webkit-flex;
    	flex-wrap:wrap;
    	width:100%;
    	}	
    .leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge_bi ul li{
    	width:33.3%;
    	text-align:center;
    	margin-bottom:0.05rem;}
    .leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge_bi ul li .shu{
    	font-size:0.14rem;
    	color:rgba(14,253,255,1);
    	font-family:dig;
    	padding:0.12rem 0 0.02rem;
    	font-weight:normal;}	
    .leftMain_middle .leftMain_middle_right .leftMain_middle_rightIn .biaoge_bi ul li .zi{
    	font-size:0.06rem;
    	color:#fff;}	
    /*右边部分*/	
    .rightMain .rightMain_top{
    	width:100%;
    	padding-bottom:0.1rem;
    	}		
    .rightMain .rightMain_topIn{
    	border:0.008rem solid rgba(14,253,255,0.5);
    	width:100%;
    	min-height:60px;
    	position:relative;
    	padding:0.08rem 0.05rem;
    	}	
    .rightMain .rightMain_topIn h3{
    	font-size:0.08rem;
    	color:#fff;
    	margin-bottom:0.05rem;
    	}	
    .rightMain .rightMain_topIn .biaoge{
    	min-height:200px;}	
    	
    .rightMain .rightMain_bottom{
    	width:100%;
    	}		
    .rightMain .rightMain_bottomIn{
    	border:0.008rem solid rgba(14,253,255,0.5);
    	width:100%;
    	min-height:60px;
    	position:relative;
    	padding:0.08rem 0.05rem;
    	}	
    .rightMain .rightMain_bottomIn h3{
    	font-size:0.08rem;
    	color:#fff;
    	margin-bottom:0.05rem;
    	}	
    /*右下角表格*/	
    .rightMain .rightMain_bottomIn .biaoge{
    	min-height:200px;}	
    .rightMain .rightMain_bottomIn .biaoge_list{
    	overflow:hidden;
    	position: relative;}
    .rightMain .rightMain_bottomIn .biaoge_list .biaoge_listIn .ul_list{
    	overflow:hidden;
    	position: relative;}
    .rightMain .rightMain_bottomIn .biaoge_list .biaoge_listIn .ul_listIn{
    	-webkit-animation: 14s gundong linear infinite normal;
        animation: 14s gundong linear infinite normal;
        position: relative;}
    @keyframes gundong {
        0% {
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }
        100% {
            -webkit-transform: translate3d(0, -30vh, 0);
            transform: translate3d(0, -30vh, 0);
        }
    }
    
    .rightMain .rightMain_bottomIn .biaoge_list ul{
    	display:flex;
    	display: -webkit-flex;
    	width:100%;
    	}	
    .rightMain .rightMain_bottomIn .biaoge_list .ul_title{
    	background: linear-gradient(left, rgba(255,255,255,0.1), rgba(255,255,255,0.5), rgba(255,255,255,0.1));
            background: -ms-linear-gradient(left, rgba(255,255,255,0.1), rgba(255,255,255,0.5), rgba(255,255,255,0.1));
            background: -webkit-linear-gradient(left, rgba(255,255,255,0.1), rgba(255,255,255,0.5), rgba(255,255,255,0.1));
            background: -moz-linear-gradient(left, rgba(255,255,255,0.1), rgba(255,255,255,0.5), rgba(255,255,255,0.1));
    }
    .rightMain .rightMain_bottomIn .biaoge_list .ul_con{
    	border-bottom:0.008rem solid rgba(14,253,255,0.5);}
    .rightMain .rightMain_bottomIn .biaoge_list ul li{
    	width:20%;
    	text-align:center;
    	color:#fff;
    	font-size:0.06rem;
    	height:0.2rem;
    	line-height:0.2rem;}
    .rightMain .rightMain_bottomIn .biaoge_list ul li:frist-child{
    	text-align:left;}	
    	
    	
    	
    	
    	
    	
    
    
    
    
    
    • 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

    五、更多干货

    1.如果我的博客对你有帮助、如果你喜欢我的博客内容,请 “👍点赞” “✍️评论” “💙收藏” 一键三连哦!

    2.【👇🏻👇🏻👇🏻关注我| 获取更多源码 | 优质文章】 带您学习各种前端插件、3D炫酷效果、图片展示、文字效果、以及整站模板 、大学生毕业HTML模板 、期末大作业模板 、Echarts大数据可视化, 等! 「一起探讨 web前端 ,Node ,Java 知识,互相学习」!

    3.以上内容技术相关问题😈欢迎一起交流学习👇🏻👇🏻👇🏻🔥

  • 相关阅读:
    flutter 与原生 (iOS-swift)
    Flutter MQTT通信(实现聊天功能)
    函数的声明与作用域
    【推荐】数字化转型和数据治理资料合集124篇
    面经综合总结
    Linux实现无需手动输入密码的自动化SSH身份验证
    基于UDP协议的聊天室项目
    CSS实现鼠标移至图片上显示遮罩层及文字效果
    判断能否被3, 5, 7整除
    离线数仓(9):ODS层实现之导入业务数据
  • 原文地址:https://blog.csdn.net/bigwhiteshark/article/details/126344457