Mail.ruПочтаМой МирОдноклассникиВКонтактеИгрыЗнакомстваНовостиКалендарьОблакоЗаметкиВсе проекты

Как сделать чтобы кнопка меняла цвет текста на HTML?

Засекречено Ученик (76), на голосовании 2 недели назад
Как сделать чтобы кнопка меняла цвет текста на HTML?
Голосование за лучший ответ
Alex Mercer Мыслитель (6443) 1 месяц назад
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Change Text Color</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1 id="text">Change My Color!</h1>
<button id="colorButton">Change Color</button>

<script src="script.js"></script>
</body>
</html>

CSS
body {
font-family: Arial, sans-serif;
text-align: center;
margin-top: 50px;
}

h1 {
transition: color 0.3s; /* Smooth transition for color change */
}

button {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
JS
const button = document.getElementById('colorButton');
const text = document.getElementById('text');

button.addEventListener('click', () => {
// Generate a random color
const randomColor = '#' + Math.floor(Math.random() * 16777215).toString(16);
text.style .color = randomColor;
});
Оракул (50099) 1 месяц назад
 <meta charset="UTF-8"> 
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>цвет текста</title>
<h1 id="text">Меняется цвет текста!</h1>
<button id="colorButton">Кнопка</button>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin-top: 50px;
}
h1 {
transition: color 0.3s;
}
button {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}</style>
<script>
const button = document.getElementById('colorButton');
const text = document.getElementById('text');
button.addEventListener('click', () => {
const randomColor = '#' + Math.floor(Math.random() * 16777215).toString(16);
text.style .color = randomColor;
});</script>


 лучше
так
сделать

чтобы
скопировал
и
вставил
в
html
Оракул (50099)
Semen Kapacuk Гуру (3743) 1 месяц назад
Никак, только с помощью JS
Похожие вопросы