简体   繁体   English

当我单击一个时,所有可折叠项都会打开

[英]All Collapsibles Open When I Click One

I am currently trying to make a tribute page with collapsible content.我目前正在尝试制作一个包含可折叠内容的致敬页面。 My problem is that when you click on the first collapsible, the rest of them open.我的问题是,当您单击第一个可折叠时,它们的 rest 会打开。 I would like for a collapsible to only open when it is clicked.我希望可折叠仅在单击时打开。 They are 9 in total and it makes no sense for all of them to open when user clicks just one.它们总共有 9 个,当用户只单击一个时,所有这些都打开是没有意义的。

 body { margin: 0px 0px 0px 0px; } header { width: 100%; height: 100px; background-color: silver; text-align: center; } #main { background-color: silver; width: 100%; margin: auto; } body { padding: 10px; } #img-div { width: 60%; margin: auto; display: flex; justify-content: center; height: 400px; background-color: white; flex-direction: column; text-align: center } #tribute-info { width: 100%; height: 300px; background-color: white; } body { font-family: "Roboto"; font-size: 15px; padding: 20px; }.collapse-list { margin-bottom: 0; padding-left: 0; list-style: none; border-bottom: 1px solid #e0e0e0; }.collapse-open { display: none; }.collapse-panel { visibility: hidden; max-height: 0; opacity: 0; transition: max-height.1s, visibility.3s, opacity.3s; }.collapse-open:checked~.collapse-panel { max-height: 100%; opacity: 100; visibility: visible }.collapse-list li { margin-bottom: 0; }.collapse-list.collapse-btn { border-top: 1px solid #e0e0e0; cursor: pointer; display: block; padding: 15px 10px; margin-bottom: 0; color: #4285f4; font-weight: normal; transition: background-color.2s ease; }.collapse-list.collapse-btn:hover { background: #eee; }.collapse-open~.collapse-btn:before { content: "↓"; float: right; }.collapse-open:checked~.collapse-btn:before { content: "↑"; }.collapse-list.collapse-inner { padding: 10px }
 <header> <h1>Remembering Dr. Stella Ameyo Adadevoh</h1> <h4>The Woman Who Saved Nigeria From Ebola</h4> </header> <main id="main"> <div id="img-div"> <img id="image" src="./resources/images/adadevoh.jpg" alt="an image of the late Dr Adadevoh"> <h5>Dr. Stella Ameyo Adadevoh</h5> </div> </main> <section> <div class="collapse-list" id="tribute-info"> <input class="collapse-open" type="checkbox" id="collapse-1"> <label class="collapse-btn" for="collapse-1">Early Life And Family</label> <div class="collapse-panel"> <div class="collapse-inner"> <p>Ameyo Adadevoh was born in Lagos, Nigeria in October 1956. She spent the majority of her life in Lagos, Nigeria. Her father and great-grandfather, s</p> </div> </div> <input class="collapse-open" type="checkbox" id="collapse-2"> <label class="collapse-btn" for="collapse-2">Education</label> <div class="collapse-panel"> <div class="collapse-inner"> <p>She went to preschool at the Mainland Preparatory Primary School in Yaba, Lagos (1961-1962). </p> </div> </div> <input class="collapse-open" type="checkbox" id="collapse-3"> <label class="collapse-btn" for="collapse-3">Medical Education And Career</label> <div class="collapse-panel"> <div class="collapse-inner"> <p>Dr. Adadevoh graduated from the University of Lagos, </p> </div> </div> </div> </section>

This is the culprit clause: .collapse-open:checked ~.collapse-panel - all successor sibling elements of class collapse-panel open when a checkbox is checked.这是罪魁祸首子句: .collapse-open:checked ~.collapse-panel - class 的所有后继兄弟元素在选中复选框时打开collapse-panel

The remedy is a move to the adjacent sibling selector + modifying the selector that opens the panel on the way:补救方法是移动到相邻兄弟选择器+修改中途打开面板的选择器:

/* old */ .collapse-open:checked ~ .collapse-panel
/* new */ .collapse-open:checked + label + .collapse-panel

The selectors controlling the display of the arrow have been altered to use the adjacent sibling selector as well.控制箭头显示的选择器也已更改为使用相邻的兄弟选择器。

 body { margin: 0px 0px 0px 0px; } header { width: 100%; height: 100px; background-color: silver; text-align: center; } #main { background-color: silver; width: 100%; margin: auto; } body { padding: 10px; } #img-div { width: 60%; margin: auto; display: flex; justify-content: center; height: 400px; background-color: white; flex-direction: column; text-align: center } #tribute-info { width: 100%; height: 300px; background-color: white; } body { font-family: "Roboto"; font-size: 15px; padding: 20px; }.collapse-list { margin-bottom: 0; padding-left: 0; list-style: none; border-bottom: 1px solid #e0e0e0; }.collapse-open { display: none; }.collapse-panel { visibility: hidden; max-height: 0; opacity: 0; transition: max-height.1s, visibility.3s, opacity.3s; }.collapse-open:checked + label +.collapse-panel { max-height: 100%; opacity: 100; visibility: visible }.collapse-list li { margin-bottom: 0; }.collapse-list.collapse-btn { border-top: 1px solid #e0e0e0; cursor: pointer; display: block; padding: 15px 10px; margin-bottom: 0; color: #4285f4; font-weight: normal; transition: background-color.2s ease; }.collapse-list.collapse-btn:hover { background: #eee; }.collapse-open +.collapse-btn:before { content: "↓"; float: right; }.collapse-open:checked +.collapse-btn:before { content: "↑"; }.collapse-list.collapse-inner { padding: 10px }
 <html> <body> <header> <h1>Remembering Dr. Stella Ameyo Adadevoh</h1> <h4>The Woman Who Saved Nigeria From Ebola</h4> </header> <main id ="main"> <div id="img-div"> <img id ="image" src="./resources/images/adadevoh.jpg" alt="an image of the late Dr Adadevoh"> <h5>Dr. Stella Ameyo Adadevoh</h5> </div> </main> <section> <div class="collapse-list" id="tribute-info"> <input class="collapse-open" type="checkbox" id="collapse-1"> <label class="collapse-btn" for="collapse-1">Early Life And Family</label> <div class="collapse-panel"> <div class="collapse-inner"> <p>Ameyo Adadevoh was born in Lagos, Nigeria in October 1956. She spent the majority of her life in Lagos, Nigeria. Her father and great-grandfather, s</p> </div> </div> <input class="collapse-open" type="checkbox" id="collapse-2"> <label class="collapse-btn" for="collapse-2">Education</label> <div class="collapse-panel"> <div class="collapse-inner"> <p>She went to preschool at the Mainland Preparatory Primary School in Yaba, Lagos (1961-1962). </p> </div> </div> <input class="collapse-open" type="checkbox" id="collapse-3"> <label class="collapse-btn" for="collapse-3">Medical Education And Career</label> <div class="collapse-panel"> <div class="collapse-inner"> <p>Dr. Adadevoh graduated from the University of Lagos, </p> </div> </div> </div> </section> </body> </html>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM