問題:
如何對文字內容進行分割區將HTML 文件分成螢幕大小的部分,以便在WebKit 瀏覽器中分頁,確保每個「頁面」顯示完整的文字單元,而不會跨螢幕邊界分割行?
答案:
要在WebKit 瀏覽器中實作HTML 分頁,可以採用以下JavaScript 和CSS 解決方案:
<code class="javascript">var desiredHeight; var desiredWidth; var bodyID = document.getElementsByTagName('body')[0]; totalHeight = bodyID.offsetHeight; pageCount = Math.floor(totalHeight / desiredHeight) + 1; bodyID.style.padding = 10; //(optional) prevents clipped letters around the edges bodyID.style.width = desiredWidth * pageCount; bodyID.style.height = desiredHeight; bodyID.style.WebkitColumnCount = pageCount;</code>
此程式碼定義每個頁面所需的高度和寬度(desiredHeight 和desiredWidth)。它計算文件的總高度 (totalHeight) 並確定所需的頁數 (pageCount)。
調整 body 元素的 padding 以防止文字在邊緣被截斷,以及其寬度和高度設定為適應所需的頁面尺寸。最後,WebkitColumnCount 屬性用於為分頁內容建立欄位。
以上是如何為 WebKit 瀏覽器實作 HTML 分頁:確保螢幕大小的文字區塊?的詳細內容。更多資訊請關注PHP中文網其他相關文章!