Blur effect on the entire webpage

前端 未结 5 1060
借酒劲吻你
借酒劲吻你 2020-12-16 02:17

I want that the unregistered users on my website, see the entire website\'s pages with a blur effect.

How can I create this blur effect with css ?

5条回答
  •  旧巷少年郎
    2020-12-16 02:49

    Create a new div tag with id="body_bag" and put your rest of the site edits within that div and use following css to give the blur effect.

    #body_bag {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        background: #000;
        opacity: 0.5;
        filter: alpha(opacity = 50); /* required for opacity to work in IE */
    }
    

提交回复
热议问题