если вы добавите этот код в blockster.js в строке 144, у вас будет больше блоков одновременно исчезать.
/* ------------------
| ANIMATION - with all blocks built, set an interval to turn them all on, one by one.
| When all blocks in position, and all have finished anim (if fade rather than simple)
| - kill int
| - shuffle slides so the one our blocks contain parts of is genuinely topmost
| - remove blocks
------------------ */
var simultaneous = 5;
for(var i = 0; i < simultaneous; ++i)
{
addTimer(nextSlide, thiss, i, simultaneous);
}
}
function addTimer(nextSlide, thiss, i, simultaneousBlocks)
{
setTimeout(function()
{
var animInt = setInterval(function()
{
if(thiss.params.holder.children('.block:not(:visible)').length > 0)
{
var blocks = thiss.params.holder.children('.block:not(:visible)');
with($(blocks.get(!thiss.params.random ? 0 : Math.floor(Math.random() * blocks.length)))) thiss.params.animType == 'simple' ? show() : fadeIn(thiss.params.blockAnimSpeed);
}
else if ($('.block:animated').length == 0)
{
clearInterval(animInt);
nextSlide.siblings().hide();
nextSlide.show();
$('.block').remove();
}
}, thiss.params.blockAnimSpeed);
}, (thiss.params.blockAnimSpeed / simultaneousBlocks) * i);
}