This commit is contained in:
kakkokari-gtyih
2024-07-06 10:53:51 +09:00
parent 0555e98c3f
commit ea3db748c7

View File

@@ -251,9 +251,9 @@ function windowEventHandler(event: MessageEvent) {
function calcScale() { function calcScale() {
if (!resizerRootEl.value) return; if (!resizerRootEl.value) return;
const previewWidth = resizerRootEl.value.clientWidth - 40; // 左右の余白 20pxずつ const previewWidth = resizerRootEl.value.clientWidth - 40; // 左右の余白 20pxずつ
const previewHeight = resizerRootEl.value.clientHeight - 40; // 上下の余白 20pxずつプレビューの文字は28px const previewHeight = resizerRootEl.value.clientHeight - 40; // 上下の余白 20pxずつ
const iframeWidth = 500; const iframeWidth = 500;
const scale = Math.min(previewWidth / iframeWidth, previewHeight / iframeHeight.value, 1); // 拡大はしない const scale = Math.min(previewWidth / iframeWidth, previewHeight / iframeHeight.value, 1); // 拡大はしないので1を上限に
iframeScale.value = scale; iframeScale.value = scale;
} }