私はこのレイアウトを持っています:
<div id="sectors">
<h1>Sectors</h1>
<div id="s7-1103" class="alpha"></div>
<div id="s8-1104" class="alpha"></div>
<div id="s1-7605" class="beta"></div>
<div id="s0-7479"></div>
<div id="s2-6528" class="gamma"></div>
<div id="s0-4444"></div>
</div>
これらのCSSルールを使用すると:
#sectors {
width: 584px;
background-color: #ffd;
margin: 1.5em;
border: 4px dashed #000;
padding: 16px;
overflow: auto;
}
#sectors > h1 {
font-size: 2em;
font-weight: bold;
text-align: center;
}
#sectors > div {
float: left;
position: relative;
width: 180px;
height: 240px;
margin: 16px 0 0 16px;
border-style: solid;
border-width: 2px;
}
#sectors > div::after {
display: block;
position: absolute;
width: 100%;
bottom: 0;
font-weight: bold;
text-align: center;
text-transform: capitalize;
background-color: rgba(255, 255, 255, 0.8);
border-top: 2px solid;
content: attr(id) ' - ' attr(class);
}
#sectors > div:nth-of-type(3n+1) {
margin-left: 0;
}
#sectors > div.alpha { color: #b00; background-color: #ffe0d9; }
#sectors > div.beta { color: #05b; background-color: #c0edff; }
#sectors > div.gamma { color: #362; background-color: #d4f6c3; }
私はjQueryを使用して、他の方法ではクラスの1つunassigned
を持たないセクターにクラスを追加します。alpha
beta
gamma
$('#sectors > div:not(.alpha, .beta, .gamma)').addClass('unassigned');
次に、そのクラスにいくつかの異なるルールを適用します。
#sectors > div.unassigned {
color: #808080;
background-color: #e9e9e9;
opacity: 0.5;
}
#sectors > div.unassigned::after {
content: attr(id) ' - Unassigned';
}
#sectors > div.unassigned:hover {
opacity: 1.0;
}
そして、すべてが最新のブラウザで完璧に機能します。
しかし:not()
、jQueryのセレクターは:not()
CSS3に基づいているので、スタイルシートに直接移動できるので、jQueryを使用してクラスを追加する必要はないと考えていました。その上、私は古いバージョンのIEをサポートすることにあまり興味がなく、他のブラウザーは:not()
セレクターを優れた方法でサポートしています。
したがって、.unassigned
上記の部分をこれに変更してみます(レイアウトにはセクターΑ、Β、Γのみが含まれることを知っています)。
#sectors > div:not(.alpha, .beta, .gamma) {
color: #808080;
background-color: #e9e9e9;
opacity: 0.5;
}
#sectors > div:not(.alpha, .beta, .gamma)::after {
content: attr(id) ' - Unassigned';
}
#sectors > div:not(.alpha, .beta, .gamma):hover {
opacity: 1.0;
}
しかし、これを行うとすぐに機能しなくなります—すべてのブラウザで!割り当てられていないセクターは、グレー表示、フェードアウト、または「未割り当て」のラベルが表示されなくなりました。
更新されましたが、それほどインタラクティブではありませんjsFiddleプレビュー
:not()
セレクターがjQueryで機能するのに、CSSで失敗するのはなぜですか?jQueryは「CSS3準拠」であると主張しているので、両方の場所で同じように機能するべきではありませんか、それとも私が見逃しているものがありますか?
これに対する純粋なCSSの回避策はありますか、それともスクリプトに依存する必要がありますか?