【发布时间】:2020-11-12 23:17:16
【问题描述】:
我为客户页面制作了一个事件下拉列表。
理想情况下,我希望带有月份的按钮打开事件列表,但由于它目前位于,它全部可见,并且仅在单击按钮时在可见性之间切换。如何在不可见的情况下启动它然后切换?
我遇到的第二个问题是,当单击“信息”按钮时,它下面的事件由于某种原因而宽度缩短了?
Here 是物理站点的链接。
代码:
jQuery(function() {
jQuery(".click-to-reveal").click(function() {
jQuery(this)
.children()
.toggleClass("rotate");
jQuery(this)
.next("div.click-to-reveal-block")
.slideToggle();
});
});
$(document).ready(function() {
$("#event-container-two").click(function() {
$("#event-info-container").toggle();
});
$(".second").click(function() {
$(".reveal-second").toggle();
});
$(".third").click(function() {
$(".reveal-third").toggle();
});
$(".fourth").click(function() {
$(".reveal-fourth").toggle();
});
$(".fifth").click(function() {
$(".reveal-fifth").toggle();
});
$(".sixth").click(function() {
$(".reveal-sixth").toggle();
});
$(".seventh").click(function() {
$(".reveal-seventh").toggle();
});
$(".eighth").click(function() {
$(".reveal-eighth").toggle();
});
$(".ninth").click(function() {
$(".reveal-ninth").toggle();
});
});
#content {
margin-top: 50px;
width: 100%;
}
/*
* Button click
*/
button {
font-family: 'AGENTUR';
background: #cd9d2b;
color: #f6eee1;
padding-top: 16px;
padding-bottom: 16px;
padding-left: 60px;
padding-right: 60px;
font-size: 40px;
border: none;
cursor: pointer;
}
.click-to-reveal-block {
margin-top: 20px;
background-color: #cd9d2b;
color: #f6eee1;
display: flex;
flex-direction: column;
justify-content: space-between;
}
#event-container {
background-color: #cd9d2b;
color: #f6eee1;
display: flex;
flex-direction: row;
justify-content: space-between;
border-bottom: 1px solid #f6eee1;
}
#event-container-one {
padding-top: 30px;
padding-left: 50px;
}
#event-container-two {
border-left: 1px solid #f6eee1;
padding-top: 25px;
padding-left: 60px;
padding-right: 60px;
cursor: pointer;
}
#event-text {
background-color: #cd9d2b;
color: #f6eee1;
font-size: 25px;
}
#event-info-text {
display: flex;
justify-content: center;
text-align: center;
padding-left: 10px;
padding-right: 10px;
border-bottom: 1px solid #f6eee1;
font-size: 25px;
}
#event-info-container {
display: none;
background-color: #f6eee1;
border-left: 2px solid #cd9d2b;
border-right: 2px solid #cd9d2b;
border-bottom: 2px solid #cd9d2b;
padding-top: 20px;
padding-bottom: 60px;
padding-left: 35px;
padding-right: 25px;
font-size: 25px;
}
#event-info-description {
color: #cd9d2b;
}
#event-info-d {
font-size: 20px;
}
#event-info-link {
color: #cd9d2b;
float: right;
padding-right: 50px;
text-decoration: underline;
}
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<div id="content">
<button class="click-to-reveal">DECEMBER
<img src="https://static1.squarespace.com/static/546537f6e4b08689b03f27a1/t/5fadab28ff73a225b25eace2/1605217064042/Asset+1%40146x.png" width="60" height="60"/>
</button>
<div class="click-to-reveal-block" id="flex-block">
<div class="click-to-reveal-inner-block">
<div id="event-container">
<div id="event-container-one">
<p id="event-text"> Seattle Arts & Lectures in partnership with Estelita’s Library Jenna and Kimberly in conversation with King Britt, Dec 2, 2020
</p>
</div>
<div id="event-container-two">
<p id="event-info-text"> info
</p>
</div>
</div>
<div id="event-info-container" class="reveal">
<div id="event-info-description" class="info-reveal">
<p id="event-info-d"> Seattle Arts & Lectures in partnership with Estelita’s Library Jenna and Kimberly in conversation with King Britt. </p>
</div>
<div id="event-info-link">
<a href="https://lectures.org/event/black-futures/" target="_blank">
<p id="event-info-d"> Register Here </p>
</a>
</div>
</div>
<div id="event-container">
<div id="event-container-one">
<p id="event-text"> Sixth and I in partnership with Loyalty Books, Dec 3, 2020
</p>
</div>
<div id="event-container-two" class="second">
<p id="event-info-text"> info
</p>
</div>
</div>
<div id="event-info-container" class="reveal-second">
<div id="event-info-description" class="info-reveal">
<p id="event-info-d"> Jenna Wortham & Kimberly Drew with moderator Camonghne Felix. </p>
</div>
<div id="event-info-link">
<a href="https://www.sixthandi.org/event/kimberly-drew-and-jenna-wortham/" target="_blank">
<p id="event-info-d"> Register Here </p>
</a>
</div>
</div>
<div id="event-container">
<div id="event-container-one">
<p id="event-text"> Charis Books in partnership with For Keeps bookstore, Dec 5, 2020
</p>
</div>
<div id="event-container-two" class="third">
<p id="event-info-text"> info
</p>
</div>
</div>
<div id="event-info-container" class="reveal-third">
<div id="event-info-description" class="info-reveal">
<p id="event-info-d"> Jenna Wortham & Kimberly Drew in conversation with Antonio Johnson and Donovan X. Ramsey, moderated by Theo Tyson. </p>
</div>
<div id="event-info-link">
<a href="https://www.charisbooksandmore.com/event/envisioning-black-futures" target="_blank">
<p id="event-info-d"> Register Here </p>
</a>
</div>
</div>
<div id="event-container">
<div id="event-container-one">
<p id="event-text"> Brooklyn Academy of Music, Dec 7, 2020
</p>
</div>
<div id="event-container-two" class="fourth">
<p id="event-info-text"> info
</p>
</div>
</div>
<div id="event-info-container" class="reveal-fourth">
<div id="event-info-description" class="info-reveal">
<p id="event-info-d"> Kimberly Drew and Jenna Wortham in conversation with Raquel Willis and Naima Green. </p>
</div>
<div id="event-info-link">
<a href="https://www.bam.org/blackfutures" target="_blank">
<p id="event-info-d"> Register Here </p>
</a>
</div>
</div>
<div id="event-container">
<div id="event-container-one">
<p id="event-text"> Uncle Bobbie’s Bookstore, Dec 8, 2020
</p>
</div>
<div id="event-container-two" class="fifth">
<p id="event-info-text"> info
</p>
</div>
</div>
<div id="event-info-container" class="reveal-fifth">
<div id="event-info-description" class="info-reveal">
<p id="event-info-d"> Jenna Wortham & Kimberly Drew in conversation with Tiona Nekkia McClodden. </p>
</div>
<div id="event-info-link">
<a href="https://www.crowdcast.io/e/blackfutures/register" target="_blank">
<p id="event-info-d"> Register Here </p>
</a>
</div>
</div>
<div id="event-container">
<div id="event-container-one">
<p id="event-text"> City Arts & Lectures with Marcus Books, Dec 9, 2020
</p>
</div>
<div id="event-container-two" class="sixth">
<p id="event-info-text"> info
</p>
</div>
</div>
<div id="event-info-container" class="reveal-sixth">
<div id="event-info-description" class="info-reveal">
<p id="event-info-d"> Jenna Wortham & Kimberly Drew in conversation with Ashley Ford. </p>
</div>
<div id="event-info-link">
<a href="https://www.cityarts.net/event/jenna-wortham-kimberly-drew/" target="_blank">
<p id="event-info-d"> Register Here </p>
</a>
</div>
</div>
<div id="event-container">
<div id="event-container-one">
<p id="event-text"> California African American Museum and Scripps College with book sales by Eso Won, Dec 10, 2020
</p>
</div>
<div id="event-container-two" class="seventh">
<p id="event-info-text"> info
</p>
</div>
</div>
<div id="event-info-container" class="reveal-seventh">
<div id="event-info-description" class="info-reveal">
<p id="event-info-d"> Jenna Wortham & Kimberly Drew in conversation with Pierre Davis (No Sesso) among others. </p>
</div>
<div id="event-info-link">
<a href="https://caamuseum.org/programs/talks-and-workshops/in-conversation-black-futures-with-jenna-wortham-kimberly-drew-and-select-contributors" target="_blank">
<p id="event-info-d"> Register Here </p>
</a>
</div>
</div>
<div id="event-container">
<div id="event-container-one">
<p id="event-text"> Source Booksellers (in Detroit), Dec 11, 2020
</p>
</div>
<div id="event-container-two" class="eighth">
<p id="event-info-text"> info
</p>
</div>
</div>
<div id="event-info-container" class="reveal-eighth">
<div id="event-info-description" class="info-reveal">
<p id="event-info-d"> Jenna Wortham & Kimberly Drew in conversation with Taylor Aldridge. </p>
</div>
<div id="event-info-link">
<a href="https://www.eventbrite.com/e/black-futures-author-event-tickets-128373896781" target="_blank">
<p id="event-info-d"> Register Here </p>
</a>
</div>
</div>
<div id="event-container">
<div id="event-container-one">
<p id="event-text"> Chicago Humanities Festival with book sales by Seminary Co-op, Dec 14, 2020
</p>
</div>
<div id="event-container-two" class="ninth">
<p id="event-info-text"> info
</p>
</div>
</div>
<div id="event-info-container" class="reveal-ninth">
<div id="event-info-description" class="info-reveal">
<p id="event-info-d"> Jenna Wortham & Kimberly Drew in conversation with Eve L. Ewing. </p>
</div>
<div id="event-info-link">
<a href="https://www.chicagohumanities.org/events/black-futures-kimberly-drew-jenna-wortham" target="_blank">
<p id="event-info-d"> Register Here </p>
</a>
</div>
</div>
</div>
</div>
</div>
【问题讨论】:
标签: jquery toggle show-hide spacing