Note: After publishing, you may have to bypass your browser's cache to see the changes.
$(document).ready(function(){
$('.animated-grids').each(function() {
var $current = $(this).children().first();
$current.addClass('active');
});
setInterval(function() {
$('.animated-grids').each(function() {
var $current = $(this).children('.active');
var $next = $current.nextAll(':not(.skip):first');
if (!$next.length) {
$next = $(this).children(':not(.skip):first');
}
$current.removeClass('active');
$next.addClass('active');
});
}, 2000);
});
Do you need a wiki for your Minecraft mod/gaming wiki? We'll host it for free! Contact us.