0

我正在创建一个打鼹鼠式游戏,用户必须根据上述每次回答问题时随机生成的总和点击正确的数字。我遇到的问题是用户有时必须等待很长时间才能真正出现他们需要的答案,有时需要大约十秒钟才能出现任何内容。我需要动画来让 div 更频繁地出现,但我不知道如何做到这一点。

这是数字 div 的动画属性

function randomFromTo(from, to) {
    return Math.floor(Math.random() * (to - from + 1) + from);
}

function scramble() {
    var children = $('#container').children();
    var randomId = randomFromTo(1, children.length);
    moveRandom("char" + randomId);
}

var currentMoving = [];

function moveRandom(id) {
    // If this one's already animating, skip it
    if ($.inArray(id, currentMoving) !== -1) {
        return;
    }

    // Mark this one as animating
    currentMoving.push(id);

    var cPos = $('#container').offset();
    var cHeight = $('#container').height();
    var cWidth = $('#container').width();
    var bWidth = $('#' + id).width();

    var bHeight = $('#' + id).css('top', '395px').fadeIn(100).animate({
        'top': '-55px'
    }, AnimationSpeed).fadeOut(100);

    maxWidth = cPos.left + cWidth - bWidth;
    minWidth = cPos.left;
    newWidth = randomFromTo(minWidth, maxWidth);

    $('#' + id).css({
        left: newWidth
    }).fadeIn(1000, function () {
        setTimeout(function () {
            $('#' + id).fadeOut(1000);

            // Mark this as no longer animating                
            var ix = $.inArray(id, currentMoving);
            if (ix !== -1) {
                currentMoving.splice(ix, 1);
            }
            window.cont++;
        }, 1000);
    });
}

有人可以告诉我如何做到这一点,以便屏幕上一次总是有一定数量的答案,而不是用现在的数字等待很长时间?

小提琴:http: //jsfiddle.net/xgDZ4/3/

4

0 回答 0