It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical andcannot be reasonably answered in its current form. For help clari
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarif开发者_StackOverflow中文版ying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Can someboy tell me how I can acheive the following or somethnig similar for a cool menu bar, etc,.?
Any help would be greatly appreciated! Thanks!
You can use pretty much any CSS-based menu system and customize it to look like this using CSS3's opacity function, as follows:
.dropdown
{
opacity:0.4;
filter:alpha(opacity=40); /* For IE8 and earlier */
}
Apply this CSS class to the dropdowns in your menu system and you're ready to go.
精彩评论