<header>
<h2 class="title">element.style.fontSize</h2>
<p class="description">Властивість для зміни розміру шрифту елемента</p>
</header>
<main>
<div class="result">
<p id="text">Це приклад тексту, розмір якого можна змінювати.</p>
<button id="increase">Збільшити шрифт</button>
<button id="decrease">Зменшити шрифт</button>
<br><br>
<label for="fontSizeRange">Розмір шрифту:</label>
<input type="range" id="fontSizeRange" min="10" max="50" value="16">
</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);
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
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;
}
.result {
background-color: #f8f8f8;
padding: 15px;
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
}
button {
margin: 5px;
padding: 10px;
font-size: 14px;
}
label {
margin-right: 10px;
}
// Отримуємо елементи
let textElement = document.getElementById('text');
let increaseButton = document.getElementById('increase');
let decreaseButton = document.getElementById('decrease');
let fontSizeRange = document.getElementById('fontSizeRange');
// Функція для встановлення розміру шрифту
function setFontSize(size) {
textElement.style.fontSize = size + 'px';
}
// Обробники подій для кнопок збільшення та зменшення розміру шрифту
increaseButton.addEventListener('click', function() {
let currentSize = parseInt(window.getComputedStyle(textElement).fontSize);
setFontSize(currentSize + 2);
fontSizeRange.value = currentSize + 2;
});
decreaseButton.addEventListener('click', function() {
let currentSize = parseInt(window.getComputedStyle(textElement).fontSize);
setFontSize(currentSize - 2);
fontSizeRange.value = currentSize - 2;
});
// Обробник подій для повзунка
fontSizeRange.addEventListener('input', function() {
setFontSize(this.value);
});
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.