this hidden html game中的作弊/自动移动桨板的外观如何?

有一个

<div id="breakout-ball"><span>●</span></div>

和一个
<div id="breakout-paddle"></div>

当移动鼠标时,桨将水平移动。如何将球的运动与桨连接起来?

这个问题将尽快成为“社区Wiki”。

最佳答案

function cheat() {
    var ball   = document.getElementById('breakout-ball');
    var paddle = document.getElementById('breakout-paddle');

    paddle.style.left = ball.style.left;

    setTimeout(cheat, 20);
}

cheat();

// Add this via the FireBug console.

09-30 22:01