कोई विचार?
अगर यह कुछ जोड़ता है तो सीएसएस 4 फैंसी होगा पीछे की ओर चलने में हुक है । तब तक यह संभव है (हालांकि उचित नहीं ) उपयोग करने के लिए checkbox
और / या radio
input
एस सामान्य तरीके को तोड़ने के लिए जो चीजें जुड़ी हुई हैं, और इसके माध्यम से सीएसएस को अपने सामान्य दायरे से बाहर काम करने की भी अनुमति है ...
/* Hide things that may be latter shown */
.menu__checkbox__selection,
.menu__checkbox__style,
.menu__hidden {
display: none;
visibility: hidden;
opacity: 0;
filter: alpha(opacity=0); /* Old Microsoft opacity */
}
/* Base style for content and style menu */
.main__content {
background-color: lightgray;
color: black;
}
.menu__hidden {
background-color: black;
color: lightgray;
/* Make list look not so _listy_ */
list-style: none;
padding-left: 5px;
}
.menu__option {
box-sizing: content-box;
display: block;
position: static;
z-index: auto;
}
/* ▼ - \u2630 - Three Bars */
/*
.menu__trigger__selection::before {
content: '\2630';
display: inline-block;
}
*/
/* ▼ - Down Arrow */
.menu__trigger__selection::after {
content: "\25BC";
display: inline-block;
transform: rotate(90deg);
}
/* Customize to look more `select` like if you like */
.menu__trigger__style:hover,
.menu__trigger__style:active {
cursor: pointer;
background-color: darkgray;
color: white;
}
/**
* Things to do when checkboxes/radios are checked
*/
.menu__checkbox__selection:checked + .menu__trigger__selection::after,
.menu__checkbox__selection[checked] + .menu__trigger__selection::after {
transform: rotate(0deg);
}
/* This bit is something that you may see elsewhere */
.menu__checkbox__selection:checked ~ .menu__hidden,
.menu__checkbox__selection[checked] ~ .menu__hidden {
display: block;
visibility: visible;
opacity: 1;
filter: alpha(opacity=100); /* Microsoft!? */
}
/**
* Hacky CSS only changes based off non-inline checkboxes
* ... AKA the stuff you cannot unsee after this...
*/
.menu__checkbox__style[id="style-default"]:checked ~ .main__content {
background-color: lightgray;
color: black;
}
.menu__checkbox__style[id="style-default"]:checked ~ .main__content .menu__trigger__style[for="style-default"] {
color: darkorange;
}
.menu__checkbox__style[id="style-one"]:checked ~ .main__content {
background-color: black;
color: lightgray;
}
.menu__checkbox__style[id="style-one"]:checked ~ .main__content .menu__trigger__style[for="style-one"] {
color: darkorange;
}
.menu__checkbox__style[id="style-two"]:checked ~ .main__content {
background-color: darkgreen;
color: red;
}
.menu__checkbox__style[id="style-two"]:checked ~ .main__content .menu__trigger__style[for="style-two"] {
color: darkorange;
}
<!--
This bit works, but will one day cause troubles,
but truth is you can stick checkbox/radio inputs
just about anywhere and then call them by id with
a `for` label. Keep scrolling to see what I mean
-->
<input type="radio"
name="colorize"
class="menu__checkbox__style"
id="style-default">
<input type="radio"
name="colorize"
class="menu__checkbox__style"
id="style-one">
<input type="radio"
name="colorize"
class="menu__checkbox__style"
id="style-two">
<div class="main__content">
<p class="paragraph__split">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
</p>
<input type="checkbox"
class="menu__checkbox__selection"
id="trigger-style-menu">
<label for="trigger-style-menu"
class="menu__trigger__selection"> Theme</label>
<ul class="menu__hidden">
<li class="menu__option">
<label for="style-default"
class="menu__trigger__style">Default Style</label>
</li>
<li class="menu__option">
<label for="style-one"
class="menu__trigger__style">First Alternative Style</label>
</li>
<li class="menu__option">
<label for="style-two"
class="menu__trigger__style">Second Alternative Style</label>
</li>
</ul>
<p class="paragraph__split">
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
</div>
... सुंदर सकल , लेकिन सिर्फ सीएसएस के साथ और एचटीएमएल उसे स्पर्श करें और फिर से स्पर्श कुछ भी संभव है, लेकिन body
और :root
जोड़ने के द्वारा बस के बारे में कहीं से भी id
और for
के गुणों radio
/ checkbox
input
s और label
चलाता ; संभावना है कि कोई दिखाएगा कि किसी बिंदु पर उन लोगों को कैसे फिर से स्पर्श किया जाए।
एक अतिरिक्त चेतावनी यह है कि केवल एक input
विशिष्ट id
उपयोग किए जाने वाले एक, पहले checkbox
/ दूसरे शब्दों में एक भीगे हुए राज्य को radio
जीतता है ... लेकिन कई लेबल सभी को एक ही इंगित कर सकते हैं input
, हालांकि यह एचटीएमएल और सीएसएस दोनों को भी ग्रॉसर दिखाई देगा।
... मैं उम्मीद कर रहा हूं कि सीएसएस लेवल 2 के मूल में मौजूद कुछ प्रकार के वर्कअराउंड हैं ...
मुझे अन्य :
चयनकर्ताओं के बारे में निश्चित नहीं है , लेकिन मैं :checked
प्री-सीएसएस 3 के लिए। अगर मुझे सही याद है, तो यह कुछ ऐसा था, [checked]
जिसके कारण आप इसे उपरोक्त कोड में पा सकते हैं, उदाहरण के लिए,
.menu__checkbox__selection:checked ~ .menu__hidden,
.menu__checkbox__selection[checked] ~ .menu__hidden {
/* rules: and-stuff; */
}
... लेकिन जैसी चीजों के लिए ::after
और:hover
, मैं बिल्कुल भी निश्चित नहीं हूं जिसमें सीएसएस संस्करण पहली बार दिखाई दिए।
सभी ने कहा, कृपया उत्पादन में कभी भी इसका उपयोग न करें, क्रोध में भी नहीं। एक मजाक के रूप में, या दूसरे शब्दों में सिर्फ इसलिए कि कुछ किया जा सकता है इसका मतलब हमेशा यह नहीं होना चाहिए ।