前端技巧:echarts中国地图外边框设置阴影投影效果------荧光效果 (2) 带边框 随笔

option = {
    backgroundColor: '#000',//画布背景颜色
    geo: {
        show: true,
        map: 'china',
        label: {
            normal: {
                show: false
            },
            emphasis: {
                show: false,
            }
        },
        roam: false,
        itemStyle: {
            normal: {
                areaColor: '#01215c',
                borderWidth: 5,//设置外层边框
                borderColor:'#9ffcff',
                shadowColor: 'rgba(0,54,255, 1)',
                shadowBlur: 150
            }
        }
    },
    series: [
    {
        type: 'map',
        map: 'china',
        geoIndex: 1,
        aspectScale: 0.75, //长宽比
        showLegendSymbol: false, // 存在legend时显示
        label: {
            normal: {
                show: false,
            },
            emphasis: {
                show: false,
                textStyle: {
                    color: '#fff'
                }
            }
        },
        roam: false,
        itemStyle: {
            normal: {
                areaColor: '#01215c',
                borderColor: '#3074d0',
                borderWidth: 1
            },
            emphasis: {
                areaColor: '#01215c'
            }
        },
    }]
}

效果如下


版权声明:本文为hongyu799原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。