更新时间:2020-02-29 23:31:48
这个的ak是我自己的 你们可以换成你们的
1 | < script type = "text/javascript" src = "https://api.map.baidu.com/api?v=2.0&ak=0xdI6Lq0agqBHUtthykRldY7gMTM378p" ></ script > |
这两个echarts主题可用可不用
1 2 3 | <!-- 引入主题 --> < script src = "js/chalk.js" ></ script > < script src = "js/purple-passion.js" ></ script > |
这里是柱状图自动显示tooltip的 我设置的3秒
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 | var app = { currentIndex: -1, }; setInterval( function () { var dataLen = option.series[0].data.length; // 取消之前高亮的图形 myChart.dispatchAction({ type: 'downplay' , seriesIndex: 0, dataIndex: app.currentIndex }); app.currentIndex = (app.currentIndex + 1) % dataLen; //console.log(app.currentIndex); // 高亮当前图形 myChart.dispatchAction({ type: 'highlight' , seriesIndex: 0, dataIndex: app.currentIndex, }); // 显示 tooltip myChart.dispatchAction({ type: 'showTip' , seriesIndex: 0, dataIndex: app.currentIndex }); }, 3000); //table滚动方法 // 参数1 tableID,参数2 div高度,参数3 速度,参数4 tbody中tr几条以上滚动 tableScroll( 'tableId' , 200, 60, 5) |
特别申明:
本站所有资源都是由网友投稿发布,或转载各大下载站,请自行检测软件的完整性!
本站所有资源仅供学习与参考,请勿用于商业用途,否则产生的一切后果将由您自己承担!
如有侵权请联系我们删除下架,联系方式:lei1294551502@163.com