8번째 줄: | 8번째 줄: | ||
<!--모든 파일은 저작권법에 의거하여 보호받는 저작물입니다.--> | <!--모든 파일은 저작권법에 의거하여 보호받는 저작물입니다.--> | ||
<script> | <script> | ||
− | + | function adjustHeight() { | |
− | + | var screenWidth = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth; | |
− | + | ||
− | + | if (screenWidth <= 768) { | |
− | + | document.getElementsByTagName('embed')[0].style.height = "calc(100vh + 10vh)"; | |
− | + | } else { | |
− | + | document.getElementsByTagName('embed')[0].style.height = "calc(100vh + 30vh)"; | |
− | + | } | |
− | + | } | |
− | + | ||
− | + | window.onload = function() { | |
− | + | adjustHeight(); | |
− | + | }; | |
+ | |||
+ | window.addEventListener('resize', adjustHeight); | ||
</script> | </script> | ||
</body> | </body> | ||
</html> | </html> |
2023년 6월 9일 (금) 12:18 판
function adjustHeight() {
document.documentElement.clientWidth |
if (screenWidth