(jquery)关闭整个屏幕并突出显示页面的一部分?

前端之家收集整理的这篇文章主要介绍了(jquery)关闭整个屏幕并突出显示页面的一部分?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
按照下面的截图。我很确定有人以前做过这个! =)

这个圈子是一个奖金,会很高兴一个解决方案,允许突出显示一个给定的“div”

解决方法

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;
}

See example →

原文链接:https://www.f2er.com/jquery/183389.html

猜你在找的jQuery相关文章