keji5.html 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <!DOCTYPE html>
  2. <html>
  3. <head lang="en">
  4. <meta charset="UTF-8">
  5. <title></title>
  6. <link type="text/css" href="${contextPath}/WebPages_170421/css/keji/keji.css" rel="stylesheet">
  7. <link href="${contextPath}/WebPages_170421/css/bootstrap/bootstrap.min.css" rel="stylesheet">
  8. <script type="text/javascript" src="${contextPath}/WebPages_170421/${contextPath}/WebPages_170421/jquery.js"></script>
  9. <script src="${contextPath}/WebPages_170421/js/bootstrap.min.js"></script>
  10. <script src="${contextPath}/WebPages_170421/js/echarts.js"></script>
  11. </head>
  12. <body>
  13. <div class="head">
  14. <p class="tit">吉林省科技创新创业资源公共服务平台</p>
  15. <p class="tit1">科技数据展示</p>
  16. <p class="tit2"><a href="javascript:history.go(-1);">返回首页</a></p>
  17. </div>
  18. <div class="container">
  19. <div id="main">
  20. <script type="text/javascript">
  21. var myChart = echarts.init(document.getElementById('main'));
  22. var data = [
  23. [[28604,77,17096869,'Australia',1990],[31163,77.4,27662440,'Canada',1990],[1516,68,1154605773,'China',1990],[13670,74.7,10582082,'Cuba',1990],[28599,75,4986705,'Finland',1990],[29476,77.1,56943299,'France',1990],[31476,75.4,78958237,'Germany',1990],[28666,78.1,254830,'Iceland',1990],[1777,57.7,870601776,'India',1990],[29550,79.1,122249285,'Japan',1990],[2076,67.9,20194354,'North Korea',1990],[12087,72,42972254,'South Korea',1990],[24021,75.4,3397534,'New Zealand',1990],[43296,76.8,4240375,'Norway',1990],[10088,70.8,38195258,'Poland',1990],[19349,69.6,147568552,'Russia',1990],[10670,67.3,53994605,'Turkey',1990],[26424,75.7,57110117,'United Kingdom',1990],[37062,75.4,252847810,'United States',1990]],
  24. [[44056,81.8,23968973,'Australia',2015],[43294,81.7,35939927,'Canada',2015],[13334,76.9,1376048943,'China',2015],[21291,78.5,11389562,'Cuba',2015],[38923,80.8,5503457,'Finland',2015],[37599,81.9,64395345,'France',2015],[44053,81.1,80688545,'Germany',2015],[42182,82.8,329425,'Iceland',2015],[5903,66.8,1311050527,'India',2015],[36162,83.5,126573481,'Japan',2015],[1390,71.4,25155317,'North Korea',2015],[34644,80.7,50293439,'South Korea',2015],[34186,80.6,4528526,'New Zealand',2015],[64304,81.6,5210967,'Norway',2015],[24787,77.3,38611794,'Poland',2015],[23038,73.13,143456918,'Russia',2015],[19360,76.5,78665830,'Turkey',2015],[38225,81.4,64715810,'United Kingdom',2015],[53354,79.1,321773631,'United States',2015]]
  25. ];
  26. option = {
  27. // backgroundColor: new echarts.graphic.RadialGradient(0.3, 0.3, 0.8, [{
  28. // offset: 0,
  29. // color: '#1a2754'
  30. // }, {
  31. // offset: 1,
  32. // color: '#1a2754'
  33. // }]),
  34. title: {
  35. text: '1990 与 2015 年各国家人均寿命与 GDP',
  36. textStyle: {
  37. color: '#fff',
  38. fontSize:20
  39. },
  40. subtext: '来源:吉林省科技厅',
  41. subtextStyle: {
  42. color: '#fff'
  43. }
  44. },
  45. legend: {
  46. right: 10,
  47. data: ['计算机', 'VR'],
  48. textStyle: {
  49. color: '#fff'
  50. }
  51. },
  52. xAxis: {
  53. splitLine: {
  54. lineStyle: {
  55. type: 'dashed'
  56. }
  57. },
  58. axisLine: {
  59. lineStyle: {
  60. color: '#ffffff'
  61. }
  62. }
  63. },
  64. yAxis: {
  65. splitLine: {
  66. lineStyle: {
  67. type: 'dashed'
  68. }
  69. },
  70. axisLine: {
  71. lineStyle: {
  72. color: '#ffffff'
  73. }
  74. },
  75. scale: true
  76. },
  77. series: [{
  78. name: '计算机',
  79. data: data[0],
  80. type: 'scatter',
  81. symbolSize: function (data) {
  82. return Math.sqrt(data[2]) / 5e2;
  83. },
  84. label: {
  85. emphasis: {
  86. show: true,
  87. formatter: function (param) {
  88. return param.data[3];
  89. },
  90. position: 'top'
  91. }
  92. },
  93. itemStyle: {
  94. normal: {
  95. shadowBlur: 10,
  96. shadowColor: 'rgba(120, 36, 50, 0.5)',
  97. shadowOffsetY: 5,
  98. color: new echarts.graphic.RadialGradient(0.4, 0.3, 1, [{
  99. offset: 0,
  100. color: 'rgb(251, 118, 123)'
  101. }, {
  102. offset: 1,
  103. color: 'rgb(204, 46, 72)'
  104. }])
  105. }
  106. }
  107. }, {
  108. name: 'VR',
  109. data: data[1],
  110. type: 'scatter',
  111. symbolSize: function (data) {
  112. return Math.sqrt(data[2]) / 5e2;
  113. },
  114. label: {
  115. emphasis: {
  116. show: true,
  117. formatter: function (param) {
  118. return param.data[3];
  119. },
  120. position: 'top'
  121. }
  122. },
  123. itemStyle: {
  124. normal: {
  125. shadowBlur: 10,
  126. shadowColor: 'rgba(25, 100, 150, 0.5)',
  127. shadowOffsetY: 5,
  128. color: new echarts.graphic.RadialGradient(0.4, 0.3, 1, [{
  129. offset: 0,
  130. color: 'rgb(129, 227, 238)'
  131. }, {
  132. offset: 1,
  133. color: 'rgb(25, 183, 207)'
  134. }])
  135. }
  136. }
  137. }]
  138. };
  139. myChart.setOption(option);
  140. </script>
  141. </div>
  142. </div>
  143. </body>
  144. </html>