返回介绍

weaken-background-by-shadow

发布于 2023-08-19 19:14:40 字数 2226 浏览 0 评论 0 收藏 0

pseudo-element

pseudo-element

    body.dimmed::before {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1;
        background: rgba(0, 0, 0, .8);
    }

Disadvantages:

  • need to add dimmed class to <body> by JavaScript.
  • pseudo element can't bind JavaScript event handler.

dimming-box-shadow

dimming-box-shadow

<style>
    .lightbox {
        position: fixed;
        top: 50%;
        left: 50%;
        margin-left: -140px;
        margin-top: -250px;
        box-shadow: 0 0 0 50vmax rgba(0, 0, 0, .8); /* 50vmax * 2 =full screen */
    }
</style>

<img src="./saber.jpg" class="lightbox">
<p>Bacon ipsum dolor amet consectetur...</p>

Disadvantages:

  • need to add position: fixed;,otherwise the edges of the mask layer will be exposed when scrolling.
  • only play a guiding role in the visual attention, but can not prevent mouse interaction.

backdrop

backdrop

<style>
    dialog::backdrop {
        background: rgba(0, 0, 0, .8);
    }
</style>

<button id="show">Click me</button>
<dialog id="modal">
    O HAI!
    <button id="close">Close</button>
</dialog>

<script>
    var showBtn = document.getElementById('show');
    var closeBtn = document.getElementById('close');
    showBtn.onclick = function () {
        document.querySelector('#modal').showModal();
    };
    closeBtn.onclick = function () {
        this.parentNode.close();
    }
</script>

Disadvantages:

  • browser limited supported.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文