0

プロジェクトにフラット UI (無料) CSS を含めて、ボタンとテキスト ボックスを (通常のテキストと共に) スタイル設定しましたが、デモ サイトに表示されるドロップ ダウン ボタンのスタイル設定もできません。

select-block問題は、 (デモにある)クラスをselectHTML の項目に追加すると、ドロップダウンのスタイルがまったく設定されないことです。

4

2 に答える 2

1

無料のドロップダウンチュートリアルについては、designmodo の Web サイトをお勧めします。

HTML

<div id="switch">Hover me
    <ul id="switch-menu">
        <li><a id="ml">menu 1</a></li>
        <li><a id="en">menu 2</a></li>
    </ul>
</div>

CSS

#switch {
    width: 500px;
    height: 50px;
    background-color: #3498db;
    color: white;
    cursor: pointer;
    padding: 13px 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: background-color 0.5s ease 0s;
    -moz-transition: background-color 0.5s ease 0s;
    -ms-transition: background-color 0.5s ease 0s;
    -o-transition: background-color 0.5s ease 0s;
    transition: background-color 0.5s ease 0s;
}
#switch-menu {
    background: #3498db;
    position: absolute;
    top: 48px;
    left: 10px;
    opacity: 0;
    margin: 0;
    padding-left: 0;
    -webkit-transition: opacity 0.5s ease 0s;
    -moz-transition: opacity 0.5s ease 0s;
    -ms-transition: opacity 0.5s ease 0s;
    -o-transition: opacity 0.5s ease 0s;
    transition: opacity 0.5s ease 0s;
}
#switch-menu li {
    list-style: none;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.5s ease 0s;
    -moz-transition: height 0.5s ease 0s;
    -ms-transition: height 0.5s ease 0s;
    -o-transition: height 0.5s ease 0s;
    transition: height 0.5s ease 0s;
}
#switch-menu li a {
    display: block;
    color: white;
    width: 120px;
    text-decoration: none;
    padding: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
#switch:hover ul {
    opacity: 1;
}
#switch:hover ul li {
    height: 40px;
    overflow: visible;
}
#switch:hover ul li a:hover {
    padding-left: 15px;
    background-color: #4aa3df;
}

例を見てくださいhttp://jsfiddle.net/sweetmaanu/84bVm/

于 2013-09-13T20:08:59.847 に答える
1

Flat UI に付属の Selectpicker jQuery プラグイン (Bootstrap Selectpicker にいくつかのオプションを追加したもの) を使用し、次の方法で初期化しました。

$('select[name="myselect"]').selectpicker({
    style: 'btn-primary',
    menuStyle: 'dropdown-inverse'
});

myselect(選択ボックスの名前に置き換えます。)

于 2013-11-13T15:16:28.783 に答える