Программируй
276 subscribers
587 photos
11 videos
23 files
182 links
Всем привет я scratch_craft_2 и это мой канал в телеграмм, он тебе понравится если ты ищешь хорошие канал по скретч.
———————————
Сайт: https://scratch-craft-2.github.io
——
Буст каналу: https://t.me/boost/
creative_programmer
——
По вопросам в директ канала
Download Telegram
Давно не было интересных кодов😼
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
62🤩1
Случайный цвет фона на сайте🙂
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
🔥64🆒2