解决方法
See example of the following here →
不需要插件这可以用很少的jQuery代码来实现,在z指数上面显示一个与选定的div的停电覆盖图:
$('.expose').click(function(e){ $(this).css('z-index','99999'); $('#overlay').fadeIn(300); }); $('#overlay').click(function(e){ $('#overlay').fadeOut(300,function(){ $('.expose').css('z-index','1'); }); });
根据以下HTML& CSS …只需将暴露类添加到您想要单击的任何元素:
<div class="expose">Some content</div> <textarea class="expose">Some content</textarea><br /> <input type="text" class="expose" value="Some content" /><br /> <div id="overlay"></div> .expose { position:relative; } #overlay { background:rgba(0,0.3); display:none; width:100%; height:100%; position:absolute; top:0; left:0; z-index:99998; }