美文网首页
js实现div铺满整个屏幕

js实现div铺满整个屏幕

作者: 瞳孔里的温柔你看得见不 | 来源:发表于2019-04-23 13:33 被阅读0次

export function getWindows(id){

let baseid=document.getElementById(id)

console.log(baseid)

const width = window.innerWidth ? window.innerWidth : document.documentElement.clientWidth ? document.documentElement.clientWidth : screen.width

const height = window.innerHeight ? window.innerHeight : document.documentElement.clientHeight ? document.documentElement.clientHeight : screen.height

console.log(width)

console.log(height)

console.log(baseid.style)

baseid.style.width = width+'px'; 

  baseid.style.height =height+'px'; 

}

//用法

// getWindows("baseId");

//  window.onresize=function(){

// getWindows("baseId")

//  } 

相关文章

网友评论

      本文标题:js实现div铺满整个屏幕

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