【代码片段】遮罩层
时间:2015-01-30 15:18:02
收藏:0
阅读:127
$(function() {
var h = $(document).height()+"px";
var w = $(document).width()+"px";
$(‘#t‘).css({ height:h,width:w});
});
<div id="t" style="border:solid red 1px;filter:alpha(opacity=0.5);opacity:0.5;">
111111
</div>
评论(0)