为什么我的火花没有动画?

时间:2013-02-15 20:29:26

标签: javascript jquery css dom animation

我在http://blajeny.com处,以下代码旨在为用户点击屏幕跳舞时激发几个火花:

jQuery('body').click(function(event_object)
    {
    var number_of_sparks = 6 + Math.round(6 * Math.random());
    for(var index = 0; index < number_of_sparks; ++index)
        {
        spark(event_object.pageX, event_object.pageY);
        }
    });

function move_spark(image, angle, increment, speed, x, y)
    {
    console.log('angle: ' + angle + ', increment: ' + increment + ', speed: '
      + speed);
    my_angle = angle + (Math.random() - Math.random()) / 10;
    var velocity_x = Math.round(Math.cos(angle) * speed);
    var velocity_y = Math.round(Math.sin(angle) * speed);
    image.style.top = (y - 10 + velocity_y) + 'px';
    image.style.left = (x - 10 + velocity_x) + 'px';
    my_increment = increment + 1;
    if (increment > 10)
        {
        image.style.opacity = (20 - my_increment) / 10;
        }
    if (image.style.opacity < .01)
        {
        document.body.removeChild(image);
        }
    else
        {
        setTimeout(function()
            {
            move_spark(image, my_angle, my_increment, speed, x, y);
            }, 100);
        }
    }

function spark(x, y)
    {
    var increment = 0;
    var image_object = new Image();
    var angle = 2 * 3.1416 * Math.random();
    var speed = 7 * Math.random() + 7 * Math.random() + 7 * Math.random();
    image_object.onload = function()
        {
        image_object.style.position = 'absolute';
        image_object.style.zIndex = 1;
        image_object.style.top = (y - 10) + 'px';
        image_object.style.left = (x - 10) + 'px';
        }
    image_object.src = '/img/spark.png';
    document.body.appendChild(image_object);
    console.log('Before move_spark: ');
    move_spark(image_object, angle, increment, speed, x, y);
    }

如果我不运行动画,则单击会在其所在的位置居中放置“火花标记”。但是,如果我尝试动画,我什么也看不到,日志似乎没有显示动画。目的是制作一个移动两秒钟的动画,在第二秒内逐渐变为不可见。

如何更正此代码?

1 个答案:

答案 0 :(得分:0)

您没有设置不透明度,因此对象永远不会出现在集合

在此处检查不透明度时:

    if (image.style.opacity < .01) {
        document.body.removeChild(image);
    } else {
        setTimeout(function () {
            move_spark(image, my_angle, increment, speed, x, y);
        }, 100);
    }

这是空白而不是数字。

所以我通过向image_object添加不透明度来修复它。

Here is how it appears to be working, but I am not sure it is what you wanted.

我还对代码做了一些调整。你有一些冗余变量。

我不确定你的意思,但我认为this looks a little better