у меня есть этот HTML-код
<div class="container" id="container">
<div class="post"><h1>first title</h1>description here</div>
<div class="post"><h1>second title</h1>description here</div>
<div class="post"><h1>third title</h1>description here</div>
</div>
и этот css
.container {
height: 200px;
width: 300px;
border: 1px solid #666;
position: relative;
}
.post {
padding: 5px;
height: 190px;
width: 290px;
position: absolute;
z-index: 0;
}
и это JS
// JavaScript Document
$(document).ready(function() {
$(".post").css("display","none");
$(".post:first").fadeIn(1000).css("display","block");
setInterval("displayPosts()",6000);
//document ready end
});
function displayPosts(){
}
думаю, теперь вы знаете, что мне нужно, я действительно не понимаю, как анимировать их один за другим каждые 6 секунд, я знаю, как сделать это с изображениями, но это совсем не работает с текстом