在线观看不卡亚洲电影_亚洲妓女99综合网_91青青青亚洲娱乐在线观看_日韩无码高清综合久久

鍍金池/ 問(wèn)答/HTML/ echart百度地圖加閃爍效果

echart百度地圖加閃爍效果

series: [{

            name: '柜子故障等級(jí)',
            type: 'scatter',
            coordinateSystem: 'bmap',
            data: convertData(data),
            symbol:'image://./static/guizi/images/044br.gif',
            symbolSize: 30,
            itemStyle: {
                normal: {
                    color: 'lightgreen',
                    borderWidth: 5
                }
            },
            markPoint:{
                symbolSize:3,
                large:true,
                effect:{
                    show:true,
                    type:'bounce',
                    color:'green'
                }
            }
        }`
        
        我要把地圖上的點(diǎn)變閃爍效果symbol 設(shè)置了個(gè)gif動(dòng)圖,但是還是靜態(tài)的效果。
回答
編輯回答
厭惡我
series: [{
            name: '當(dāng)前業(yè)務(wù)',
            type: 'effectScatter',
            coordinateSystem: 'bmap',
            zlevel: 10,
            data:[],
            rippleEffect: {             //漣漪閃爍效果
                period: 1,
                scale: 5,
                brushType: 'stroke'
            },
            label: { //標(biāo)點(diǎn)地名
                normal: {
                    formatter: '',
                    position: 'right',
                    show: false
                }
            },
            itemStyle: { //標(biāo)點(diǎn)樣式
                normal: {
                    color: '#03DEFF',
                    shadowBlur: 10,
                    shadowColor: '#ffffff'
                }
            },
        }]

type: 'effectScatter'才是閃爍效果

2017年12月28日 05:30