18 lines
322 B
JavaScript
18 lines
322 B
JavaScript
var c = 255
|
|
var x = 0
|
|
function b() {
|
|
c -= 1;
|
|
document.body.style.backgroundColor = 'rgb(' + c + ',' + c + ',' + c + ')';
|
|
}
|
|
function m() {
|
|
x += 0.7
|
|
s = document.getElementById('search');
|
|
s.style.left = x + 'px'
|
|
s.style.top = x + 'px'
|
|
}
|
|
window.onload = function () {
|
|
// setInterval(b, 500);
|
|
setInterval(m, 200);
|
|
};
|
|
|