码迷,mamicode.com
首页 > 其他好文 > 详细

[转][echarts]地图轮播

时间:2019-07-12 18:54:17      阅读:333      评论:0      收藏:0      [点我收藏+]

标签:代码   show   class   func   int   action   seo   use   interval   

代码片断:

来自:https://blog.csdn.net/qq_36947128/article/details/90899564

function Play(){
    chart.dispatchAction({
        type:"downplay",
        seriesIndex:0,

    });
    chart.dispatchAction({
        type:"highlight",
        seriesIndex:0,
        dataIndex:hourIndex
    });
    chart.dispatchAction({
        type:"showTip",
        seriesIndex:0,
        dataIndex:hourIndex
    });
    hourIndex++;
    if(hourIndex > data.length){
        hourIndex=0;
    }
}

var hourIndex=0;
var fhourTime = setInterval(Play, 3000);

//鼠标移入停止轮播
chart.on("mousemove", function(e) {
    clearInterval(fhourTime)
})
//鼠标移出恢复轮播
chart.on("mouseout", function() {
    fhourTime = setInterval(Play, 3000);
})    

 

[转][echarts]地图轮播

标签:代码   show   class   func   int   action   seo   use   interval   

原文地址:https://www.cnblogs.com/z5337/p/11177722.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!