2019-07-17 15:45:34 +02:00
|
|
|
var x = 0, y = 0;
|
2019-07-17 12:55:47 +02:00
|
|
|
function m() {
|
2019-07-17 15:45:34 +02:00
|
|
|
x += (Math.random() >= 0.4 ? 1 : -1 ) * (Math.random() * 5);
|
|
|
|
|
y += (Math.random() >= 0.4 ? 1 : -1 ) * (Math.random() * 5);
|
2019-07-17 12:55:47 +02:00
|
|
|
s = document.getElementById('search');
|
2019-07-17 15:45:34 +02:00
|
|
|
s.style.left = x;
|
|
|
|
|
s.style.top = y;
|
2019-07-17 12:55:47 +02:00
|
|
|
}
|
|
|
|
|
window.onload = function () {
|
|
|
|
|
setInterval(m, 200);
|
|
|
|
|
};
|
|
|
|
|
|