Skip to content

Instantly share code, notes, and snippets.

@bacalj
Created October 6, 2015 03:43
Show Gist options
  • Save bacalj/893e07f907a3e633499d to your computer and use it in GitHub Desktop.
Save bacalj/893e07f907a3e633499d to your computer and use it in GitHub Desktop.
pjPNEj
<h1>Welcome to the Quiz!</h1>
<p>Click each question to get the answer.</p>
<div class="panel">
<div class="question">What does HTML do?</div>
<div class="answer">Hyper Text Markup Language makes stuff exist on the page</div>
</div>
<div class="panel">
<div class="question">What does CSS do?</div>
<div class="answer">Cascading Style Sheets make stuff look cool</div>
</div>
<div class="panel">
<div class="question">What does JS do?</div>
<div class="answer">JavaScript makes stuff on the page do stuff</div>
</div>
$('.panel').click(function(){
$(this).children('.answer').slideToggle();
});
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
body {
font-family:Menlo;
text-align:center;
background-color:#222;
color:silver;
}
h1 {
color:#2179E8;
}
div {
padding:10px;
}
.answer {
display:none;
color:#FF5615;
}
.panel {
width:70%;
margin:10px auto;
border:2px solid silver;
border-radius:5px;
box-shadow:2px 2px silver;
}
.panel:hover {
background-color:#111;
color:#2179E8;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment