开发者

Tips to create a cool menu bar with semi-transparent drop downs such as...(see below) [closed]

开发者 https://www.devze.com 2023-04-03 22:38 出处:网络
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,.?

Tips to create a cool menu bar with semi-transparent drop downs such as...(see below) [closed]

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消