Давно не было интересных кодов😼
#sites
function isMarch8th() {
const today = new Date();
return today.getMonth() === 2 && today.getDate() === 8;
}
if (isMarch8th()) {
var image = document.getElementById('image1');
image.src = 'ссылка на изображение 8 марта';
}
#sites
Please open Telegram to view this post
VIEW IN TELEGRAM
Случайный цвет фона на сайте🙂
#sites
const randomColor = () => {
const r = Math.floor(Math.random() * 256);
const g = Math.floor(Math.random() * 256);
const b = Math.floor(Math.random() * 256);
document.body.style.backgroundColor = `rgb(${r}, ${g}, ${b})`;
};
randomColor();
#sites
Please open Telegram to view this post
VIEW IN TELEGRAM
🔥6 4🆒2