美文网首页前端开发大杂烩
移动端设置定时器设置高度弹出框高度

移动端设置定时器设置高度弹出框高度

作者: 小丶枫 | 来源:发表于2017-06-19 11:00 被阅读0次

    var clock = setInterval('timer()',1000);

    function timer(){

    if(window.innerHeight <= window.clientHeight){

    document.getElementsByClassName('layui-m-layerchild')[0].style.height = (window.innerHeight) + 'px';

    }else{

    document.getElementsByClassName('layui-m-layerchild')[0].style.height = (window.clientHeight) + 'px';

    clearInterval(clock);

    }

    }

    相关文章

      网友评论

        本文标题:移动端设置定时器设置高度弹出框高度

        本文链接:https://www.haomeiwen.com/subject/wydgqxtx.html