我试图让这个灯箱淡入淡出,如果可能的话,最好用 CSS 来做。有什么建议么?
HTML
<section id="about">
<div class="wrapper">
<button id="hide" class="close">close</button>
<h1>About</h1>
</div>
</section>
<a id="show" href="#about" class="scroll">About</a>
JS
// Simple show and hide button
$("#hide").click(function(){
$("#about").hide();
});
$("#show").click(function(){
$("#about").show();
});