把px换成rem如:200px 换成 2rem
// 判断窗口大小 来改变元素和字体大小
function comHtmlFontSize() {
var WIDTH = document.documentElement.clientWidth;
//1920是浏览器的宽度 19.20是1/100倍 方便把px换成rem
document.documentElement.style.fontSize = (WIDTH / 19.20) + "px"
// 用于ECharts字体大小
window.HTMLFontSize = parseFloat(document.documentElement.style.fontSize);
}
$(window).resize(function() {
comHtmlFontSize()
});
comHtmlFontSize()
title: {
left: "35%",
top: "55%",
text: " 生产总值",
textStyle: {
color: "#aab1bb",
fontSize: HTMLFontSize*0.44,
},
subtext: "¥123111315",
subtextStyle: {
color: "#ffffff",
fontSize: HTMLFontSize*0.34,
},
}
配图
( 0 )个小伙伴在吐槽