I was wondering on how this effect is created in certain webpages -

On loading the webpage, a banner ad with a close button is displayed as the topmost layer, and the actual webpage is displayed as the lower layer; the webpage being completely dimmed out, so that the focus of attention naturally falls on the banner ad with close button. And on clicking this close button in the ad, the actual webpage is displayed immediately, but now, back to its original brightness.

Well, that was just an example; i know such practices of displaying ads are irksome.

And my question here is, how do you get that dim-and-bright effect on your webpage?

PS: 1. I know about the z-index in css, so i just need to know the dimming part. 2. I'm looking for a css based solution (or rephrasing that, solution without the use of any scripting like js), if its possible.

thanks guys.

link|improve this question

72% accept rate
1  
+1 for acknowledgment of "irksome" – JYelton May 13 '11 at 16:56
feedback

4 Answers

This is how it's done without javascript:

http://www.studiomoh.com/fun/csslightbox/

link|improve this answer
feedback

http://jsfiddle.net/mg3uU/

Something like this? Very minimal scripting.

link|improve this answer
feedback

It's possible to create this effect by using an absolute div, with 100% height/width, and a background image that is a black, but transparent, however, without the use of scripts, how will they be able to close it (unless they click a link to go to another page) or how will you prevent that it doesn't show up again? So while it is possible to create the effect, it would not be user-friendly without having at least a little bit of scripting involved.

link|improve this answer
feedback

You can do this using the :target selector in CSS and opacity, but both are not available in most browsers.

Instead, you are going to have to use javascript to make the dimed box appear.

Usually you'd use a absolutely positioned 100% width and height box with a background color that's rgba with a transparent png fallback.

Styling it like this will work:

#dim {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background: url('semitransparent1x1.png');
    background: rgba(0, 0, 0, 0.8);

    z-index:100;
}

Then use some simple jQuery to show it and remove it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.