您的位置:首页 > Web前端 > JQuery

jquery 自适应屏幕大小

2016-12-05 09:46 176 查看
$(document).ready(function(){
//初始化宽度、高度
$(".content-out-huo").width($(window).width());
$(".content-out-huo").height($(window).height());
//当文档窗口发生改变时 触发
$(window).resize(function(){
$(".content-out-huo").width($(window).width());
$(".content-out-huo").height($(window).height());
})
})

以上的script  代码,在网页中的表现是在标签中+  style=“ 宽和高”
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: