这是jquery代码:
$(document).ready(function() {
$('#btn-next').click(function () {
$('#recent_post').hide();
$('#top_post').fadeIn(3000).show();
return false;
});
$('#btn-prev').click(function () {
$('#top_post').hide();
$('#recent_post').fadeIn(3000).show();
return false;
});
});
这是html:
<div id="top_post" class="post" style="z-index:1;">
<!---Content goes here--->
</div>
<div class="post" id="recent_post" style="display:none;z-index:0;">
<!---Content goes here--->
</div>
我已经在我的网站中实现了它。访问http://kaidul.web44.net/中的“文章”部分
我刚刚为两个 div 构建了它。为 6 个 div 做同样的工作。希望它有效!