<header>
<h2 class="title">input</h2>
<p class="description">Спрацьовує під час зміни значення у полі введення.</p>
</header>
<main>
<div class="form-group">
<label for="text-input">Введіть текст:</label>
<input type="text" id="text-input" placeholder="Введіть щось тут...">
</div>
<div class="result">
<h3>Попередній перегляд:</h3>
<p id="preview">Зараз тут нічого немає...</p>
</div>
</main>
body {
font-size: 16px;
line-height: 1.5;
font-family: monospace;
}
header {
background-color: #f1f1f1;
margin-bottom: 25px;
padding: 15px;
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
}
header h2.title {
padding-bottom: 15px;
border-bottom: 1px solid #999;
}
header p.description {
font-style: italic;
color: #222;
}
.form-group {
margin-bottom: 20px;
}
.result {
background-color: #f8f8f8;
padding: 15px;
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
}
.result h3 {
margin-top: 0;
}
// Отримуємо елементи поля введення та блоку попереднього перегляду
const inputField = document.getElementById('text-input');
const previewField = document.getElementById('preview');
// Додаємо обробник події input
inputField.addEventListener('input', function() {
const inputValue = inputField.value.trim();
// Якщо поле порожнє, показуємо повідомлення, інакше відображаємо введений текст
if (inputValue === '') {
previewField.textContent = 'Зараз тут нічого немає...';
} else {
previewField.textContent = inputValue;
}
});
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.