Суть: создаётся див на всю страницу, каждые 50мс цвет его меняется.
javascript: document.body.innerHTML = "";
var colors = ["red", "green", "blue", "yellow"], phase = 0;
setInterval(function () {
document.getElementById("epilepsy").style.backgroundColor = colors[phase++];
if (phase == colors.length) phase = 0;
}, 50); void 0;
javascript: document.body.innerHTML = "";
var colors = ["red", "green", "blue", "yellow"], phase = 0;
setInterval(function () {
document.getElementById("epilepsy").style.backgroundColor = colors[phase++];
if (phase == colors.length) phase = 0;
}, 50); void 0;