Created page with "$(document).ready(function(){ $('.animated-grids').each(function() { var $current = $(this).children().first(); $current.addClass('active'); ..." |
(No difference)
|
$(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.