vote up 0 vote down star

How do I use javascript to black out all content except a single html element?

This is Chrome-specific app so CSS3 can be used.

flag

2 Answers

vote up 3 vote down check

Use one <div> with position: fixed; that covers the page, with something like background-color: rgba(0, 0, 0, .5);, then simply place the element you wish to show on top of that.

link|flag
How do I manage the order of placement. Z-index i mean? – gAMBOOKa Nov 7 at 10:08
Just give the overlay div a z-index higher than your other stuff, and the content element a higher index than that one. :) #overlay { z-index: 100; } #dialog { z-index: 110; } – nlogax Nov 7 at 10:11
vote up 0 vote down

You could iterate through all the elements of a document and set their background color to black, except the one with a certain ID.

You don't need CSS3 for this at all.

link|flag
I can set the back and foreground color to black but what about images, other content? – gAMBOOKa Nov 7 at 9:57
Set visibility:hidden – Andrew Johnson Nov 7 at 20:42

Your Answer

Get an OpenID
or

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