web-dev-qa-db-ja.com

擬似要素のホバー効果を作成する方法は?

私はこのセットアップを持っています:

<div id="button">Button</div>

cSSの場合:

#button {
    color: #fff;
    display: block;
    height: 25px;
    margin: 0 10px;
    padding: 10px;
    text-indent: 20px;
    width: 12%;
}

#button:before {
    background-color: blue;
    content: "";
    display: block;
    height: 25px;
    width: 25px;
}

擬似要素に#button:before:hover {...}などのホバー効果を与える方法はありますか。また、次のようにホバーされている別の要素に応答して擬似要素をホバーさせることもできますか:#button:hover #button:before {...}? CSSはいいだけですが、jQueryも問題ありません。

34
Nils_e

親のホバーに基づいて擬似要素を変更できます。

JSFiddle DEMO

#button:before {
    background-color: blue;
    content: "";
    display: block;
    height: 25px;
    width: 25px;
}

#button:hover:before {
    background-color: red;
}
#button {    display: block;
    height: 25px;
    margin: 0 10px;
    padding: 10px;
    text-indent: 20px;
    width: 12%;}

#button:before { background-color: blue;
    content: "";
    display: block;
    height: 25px;
    width: 25px;}

#button:hover:before { background-color: red;}
<div id="button">Button</div>
56
James Montagne

#button:hover:beforeは、ホバーされているボタンに応じて擬似要素を変更します。ただし、疑似要素のみに重要なことをしたい場合は、実際の要素をHTMLに入れる方が良いでしょう。擬似要素はかなり制限されています。

CSSでは、要素の後に続く要素に基づいて要素のスタイルを設定することはできませんが、通常、親ノードに:hoverを配置することで、同じ基本的な効果を持つものをリグできます。

<div id="overbutton">
    <div id="buttonbefore"></div>
    <div id="button"></div>
</div>

#overbutton {
    margin-top: 25px;
    position: relative;
}

#buttonbefore {
    position: absolute;
    background-color: blue;
    width: 25px;
    height: 25px;
    top: -25px;
}

#overbutton:hover #buttonbefore {
    // set styles that should apply to buttonbefore on button hover
}

#overbutton:hover #buttonbefore:hover {
    // unset styles that should apply on button hover
    // set styles that should apply to buttonbefore on buttonbefore hover
}
9
Brilliand

明確にするために、CAN NOT:hoverを擬似要素に渡します。 2018年現在、CSSには::after:hoverのようなものはありません。

1
Unai Yécora

設計目的のためだけであれば、長方形ボックスの両側に疑似要素を作成し、HTMLをできるだけシンプルに保つ方が良いと思います。

HTML:

 <body>
    <div class="tabStyle">Rectangle</div>
    </body>

CSS:

 .tabStyle {
        border-style:solid;
        border-color: #D8D8D8;
        background : #D8D8D8;
        width:200px;
        height:93px;
        color: #000;
        position: relative;
        top: 10px;
        left: 49px;
        text-align:center;
    }
    .tabStyle:hover {
        background : #000;
        border-color: #000;
    }
    .tabStyle:hover::before {
        border-color: transparent #000 #000 transparent;
        border-style: solid;
        border-width: 0px 0px 100px 50px;
    }
    .tabStyle:hover::after {
        border-color: transparent transparent #000 #000;
        border-style: solid;
        border-width: 0px 50px 100px 0px;
    }
    .tabStyle::after {
        border-color: transparent transparent #D8D8D8 #D8D8D8;
        border-style: solid;
        border-width: 0px 50px 100px 0px;
        position: absolute;
        top: -4px;
        left:101%;
        content:"";
    }
    .tabStyle::before {
        border-color: transparent #D8D8D8 #D8D8D8 transparent;
        border-style: solid;
        border-width: 0px 0px 100px 50px;
        position: absolute;
        top: -4px;
        right: 101%;
        content:"";
    }

CSSを変更しました。結果は以下のとおりです。

http://jsfiddle.net/a3ehz5vu/

0
komrad