November 30, 2006
7:43 pm | Last updated: March 10, 2009 at: 6:11 am

Ever want to alert your users to a really important message? Ever care to have some effect that looked like dasboard?

Add this to your css file or inside your “head” tags:

.darkenBackground { background-color: rgb(0, 0, 0); opacity: 0.7; z-index: 20; height: 100%; width: 100%; background-repeat:repeat; position:absolute; top: 0px; left: 0px; }

Basically, this says set a style in CSS to have a black background, 70% transparent, filling the entire screen. We then add this code anywhere inside our “body” tag:

<div class="&rdquo;darkenBackground&rdquo;" id="&rdquo;darkBackgroundLayer&rdquo;">
<script language="&rdquo;javascript&rdquo;" type="&rdquo;text/javascript&rdquo;">
document.getElementsById(&rdquo;darkBackgroundLayer&rdquo;).style.display = &ldquo;none&rdquo;;
</script>

This places our black box on the screen, and then the javascript hides it. We can then show it later on by putting this javascript in an event handler like onclick:

document.getElementsById(&rdquo;darkBackgroundLayer&rdquo;).style.display = &ldquo;&rdquo;;

This will show our darkened layer using javascript.

You can then use javascript to show a different window like the above code. This effect is really great and extremely useful in drawing the user’s attention.

Source:→ Dustin blog

Loading

Contextual Related Posts:

No followup yet

Leave a Response

Comment Preview
« 16 Hidden Windows XP GoodiesSearchWeaver Search Engines »
Feed Icon

Subscribe via RSS or email: