该网站通过jQuery幻灯片效果切换实现了这一目标。了解详情here。
示例(来自上面的链接):
的 HTML:强>
<p>Click anywhere to toggle the box.</p>
<div style="width: 100px; height: 100px; background: #ccc;" id="toggle"></div>
<强> JS:强>
$( document ).click(function() {
$( "#toggle" ).toggle( "slide" );
});
Fiddle