使用javascript来做 const img = new Image(); img.onload = ()=>{ img.width = img.width / 4; //其他渲染dom的代码 }; img.src = '图片地址';
使用javascript来做