VUE-自动缩放网页大小的代码
概述自动缩放网页大小的代码 实现参考取屏幕大小screen.widthscreen.height根据屏幕大小缩放if (window.screen.width=='600')document.write ('<body style="zoom: 55%">');else if (window.screen.width=='800')documen.
·
概述
自动缩放网页大小的代码
实现参考
取屏幕大小
screen.width
screen.height
根据屏幕大小缩放
if (window.screen.width=='600')
document.write ('<body style="zoom: 55%">');
else if (window.screen.width=='800')
document.write ('<body style="zoom: 75%">');
更多推荐



所有评论(0)