2

我设计了一个导航菜单,如下图所示:

倒圆角

我想用 css3 圆角和盒子阴影对其进行编码,而不是使用任何图像。问题是第一个菜单项左侧的圆角,以及菜单右侧的圆角......我称之为“反向”圆角......

它应该必须改变颜色:hover

有没有办法只在css中完成这项工作?如何?

4

1 回答 1

5

HTML

<div class="menu">
    <div class="outer_bg_left">
        <div class="outer">
            <div class="outer_shadow">
            </div>
        </div>   
    </div>

    <ul>
        <li class="menu_item_cont"><div class="menu_item">Item 1</div></li>
        <li class="menu_item_cont"><div class="menu_item">Item 2</div></li>
        <li class="menu_item_cont"><div class="menu_item">Item 3</div></li>
    </ul>

    <div class="outer_bg_right">
        <div class="outer">
            <div class="outer_shadow">
            </div>
        </div>   
    </div>
</div>

CSS

.outer_bg_left, .outer_bg_right {
    float: left;
    width: 70px;
    background-color: #994;
    height: 15px;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.outer_bg_left .outer {
    height: 25px;
    border-radius:  0 10px 0 0;
    background-color: #fff;
}

.outer_bg_right .outer {
    height: 25px;
    border-radius:  10px 0 0 0;
    background-color: #fff;
}

.outer_bg_left .outer_shadow, .outer_bg_right .outer_shadow {
    box-shadow:  0 0 5px 2px rgba(0,0,0, .7) inset;
    padding-bottom: 10px;
    margin-bottom: -10px;
    height: 25px;
}

.outer_bg_left .outer_shadow {
    border-radius: 0 10px 0 0;
    padding-left: 30px;
    margin-left: -30px;
}

.outer_bg_right .outer_shadow {
    border-radius:  10px 0px 0 0;
    padding-right: 30px;
    margin-right: -30px;
}

.menu_item_cont {
    background-color: #994;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 0 5px 2px rgba(0,0,0, .7);
    background-color: #994;
    display: block;
    float: left;
}

.menu_item {   
    border-radius: 0 0 10px 10px;
    background-color: #994;
    height: 20px;
    padding: 5px 10px;

    font-family: Arial;
    line-height: 20px;
    font-size: 14px;
    font-weight: bold;
}

.menu_item:hover {
    background-color: #000;
    border-radius: 10px;
    height: 30px;
    line-height: 30px;
    color: #fff;
}

http://jsfiddle.net/gXQzU/4/

这只是我的第一次尝试,但我认为它看起来很有希望。

于 2012-01-19T19:07:12.997 回答