调整窗口大小后如何获取窗口的高度和宽度并将其应用于已设置的覆盖层?
获取默认宽度和高度。
//Get the screen height and width
var maskHeight = $(window).height();
var maskWidth = $(window).width();
$(window).resize(function(){
maskHeight = $(window).height();
maskWidth = $(window).width();
});
将掩码设置为文档存储的宽度和高度
//Set height and width to mask to fill up the whole screen
$('#mask').css({'width':maskWidth,'height':maskHeight});
$('#mask').css('display','block');
Getting the default width and height.
//Get the screen height and width
var maskHeight = $(window).height();
var maskWidth = $(window).width();
$(window).resize(function(){
maskHeight = $(window).height();
maskWidth = $(window).width();
});
Setting the mask to be the stored width and height of the document
//Set height and width to mask to fill up the whole screen
$('#mask').css({'width':maskWidth,'height':maskHeight});
$('#mask').css('display','block');
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此代码将动态调整您的
mask
大小:This code will resize your
mask
on the fly: