2024-11-25 16:05:01 +08:00

11 lines
295 B
HTML

<h1>My App</h1>
<p>This is a test page</p>
<div>Width:</div>
<div id="j_width"></div>
<div>Height:</div>
<div id="j_height"></div>
<script>
document.getElementById('j_width').innerText = window.innerWidth;
document.getElementById('j_height').innerText = window.innerHeight;
</script>
</body>