How does the CodePen achieve this behavior?
All that the code in the demo does is modify the max-height
of the wrapper div
based on the check-box being checked or unchecked and whilst doing so also change the content of the label
.
Now lets have a look at the key individual selectors in CSS that help perform this:
.read-more-state:checked ~ .read-more-wrap .read-more-target
- This selector means that when an
input
with class = 'read-more-state'
is checked, select the elements with class = 'read-more-target'
which are present under a wrapper with class = 'read-more-wrap'
when the wrapper is also a sibling of the checkbox (the reference element).
.read-more-state ~ .read-more-trigger:before
- This is the one that populates the default text for the
label
. What it does is set the content
as "Show more" for the ::before
element of label
with class = 'read-more-trigger'
when the label
is also a sibling of the checkbox.
.read-more-state:checked ~ .read-more-trigger:before
- This is the one that modifies the text of the
label
when the checkbox is clicked. The selector means that when the input
with class = 'read-more-state'
is :checked
, set the content
of the label's before element as "Show less".
Also, note the for
attribute in the label
tag. The value of this field points to the id
of the input
tag and so whenever the label is clicked, the input
element's state gets toggled automatically. This will happen irrespective of where in DOM the label
and input
elements are.
.read-more-state {
display: none;
}
.read-more-target {
opacity: 0;
max-height: 0;
font-size: 0;
transition: .25s ease;
}
.read-more-state:checked ~ .read-more-wrap .read-more-target {
opacity: 1;
font-size: inherit;
max-height: 999em;
}
.read-more-state ~ .read-more-trigger:before {
content: 'Show more';
}
.read-more-state:checked ~ .read-more-trigger:before {
content: 'Show less';
}
.read-more-trigger {
cursor: pointer;
display: inline-block;
padding: 0 .5em;
color: #666;
font-size: .9em;
line-height: 2;
border: 1px solid #ddd;
border-radius: .25em;
}
/* Other style */
body {
padding: 2%;
}
p {
padding: 2%;
background: #fff9c6;
color: #c7b27e;
border: 1px solid #fce29f;
border-radius: .25em;
}
<div>
<input type="checkbox" class="read-more-state" id="post-1" />
<p class="read-more-wrap">Lorem ipsum dolor sit amet, consectetur adipisicing elit. <span class="read-more-target">Libero fuga facilis vel consectetur quos sapiente deleniti eveniet dolores tempore eos deserunt officia quis ab? Excepturi vero tempore minus beatae voluptatem!</span>
</p>
<label for="post-1" class="read-more-trigger"></label>
</div>
<div>
<input type="checkbox" class="read-more-state" id="post-2" />
<ul class="read-more-wrap">
<li>lorem</li>
<li>lorem 2</li>
<li class="read-more-target">lorem 3</li>
<li class="read-more-target">lorem 4</li>
</ul>
<label for="post-2" class="read-more-trigger"></label>
</div>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…