APP布局之高度自适应【适合任意手机】【js获取手机屏幕宽度、高度】

屏幕可用工作区高度就是你手机的实际高度,用vue开发的话代码案例【一定要加上单位px,否则没效果】:

<template>
    <div class="app" :style="{height:app_height}">
        <header></header>
        <section></section>
        <footer></footer>
    </div>
</template>

<script>

    export default {
        name: 'app',
        data () {
            return {
                app_height: `${window.screen.availHeight}px`,
            };
        },

网页可见区域宽:document.body.clientWidth 
网页可见区域高:document.body.clientHeight 
网页可见区域宽:document.body.offsetWidth (包括边线的宽) 
网页可见区域高:document.body.offsetHeight (包括边线的宽) 
网页正文全文宽:document.body.scrollWidth 
网页正文全文高:document.body.scrollHeight 
网页被卷去的高:document.body.scrollTop 
网页被卷去的左:document.body.scrollLeft 
网页正文部分上:window.screenTop 
网页正文部分左:window.screenLeft 
屏幕分辨率的高:window.screen.height 
屏幕分辨率的宽:window.screen.width 
屏幕可用工作区高度:window.screen.availHeight 
屏幕可用工作区宽度:window.screen.availWidth 

猜你喜欢

转载自blog.csdn.net/weixin_43343144/article/details/89532857