// узнаем id данной рубрики
$id = get_category(get_query_var('cat'))->cat_ID;
// смотрим все посты рубрики
$posts_array = get_posts( array('category'=>$id) );
$(window).scroll(function () {
$('.container > li > article').each(function() {
if (!$(this).hasClass('animate')) {
if (($(this).position().top - $(window).height() * 3 / 4) < $(window).scrollTop()) {
$curItem = $(this);
$curItem.addClass('animate');
//setTimeout(function() {$curItem.animate({opacity: 1}, 400); }, 500);
$curItem.animate({opacity: 1}, 300);
if ($curItem.parents('li').hasClass('pre_cancel')) {
$curItem.parents('li').attr('class', 'cancel');
}
}
}
});
});