echarts loading样式+方法

echarts loading样式+方法

//loading样式
function ecInit(id){
	console.log(id)
	echarts.init(document.getElementById(id)).showLoading({
		text: 'loading',
		color: '#00FFFF', //圈圈颜色
		textColor: '#fff',//文字颜色
		maskColor: 'transparent',
		zlevel: 0
	});
}

调用方法(id一定要用引号引起来)
例如 ecInit(‘demo’)

 ecInit(id)

清除样式方法

echarts.init(document.getElementById(id)).hideLoading();

样式————
echarts loading样式+方法_第1张图片

你可能感兴趣的:(echarts,javascript)