我正在尝试为 Stage 元素设置纵横比,但没有任何运气。
例如,使用画布,我会为风景写以下内容:
const dpr = window.devicePixelRatio || 1
const aspectRatio = 16 / 9
const canvasHeight = 1080 * dpr;
const canvasWidth = 1920 * dpr;
<canvas
height={canvasHeight}
width={canvasHeight * aspectRatio}
style={{
maxWidth: '100%',
maxHeight: '100%
}}
/>
这将导致当前 div 中包含具有所需纵横比的画布。当我需要风景时,我会将纵横比更改为 6 / 19;