Тема: Як зробити мигаючий фон JS?
Ось що в мене вийшло...
<h1>test☺☺☺</h1>
<style>
body{
background-color: black;
color: #775;
}
h1{
text-align: center;
font-size: 50px;
}
</style>
<script>
setInterval(black(),1000);
setInterval(white(),1000);
function white(){
document.bgcolor = "#fff";
}
function black(){
document.bgcolor = "#000";
}
</script>