<header>
<h2 class="title">element.style.marginLeft</h2>
<p class="description">Змінює відступ елемента зліва.</p>
</header>
<main>
<div class="result">
<div id="movingBlock" class="block"></div>
<button id="moveLeftBtn">← Вліво</button>
<button id="moveRightBtn">Вправо →</button>
</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);
}
.block {
width: 50px;
height: 50px;
background-color: #3498db;
margin-left: 0px;
transition: margin-left 0.3s ease;
}
button {
margin-top: 10px;
margin-right: 10px;
padding: 10px;
background-color: #3498db;
color: white;
border: none;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #2980b9;
}
const movingBlock = document.getElementById('movingBlock');
const moveLeftBtn = document.getElementById('moveLeftBtn');
const moveRightBtn = document.getElementById('moveRightBtn');
moveLeftBtn.addEventListener('click', () => {
const currentMarginLeft = parseInt(window.getComputedStyle(movingBlock).marginLeft, 10);
movingBlock.style.marginLeft = (currentMarginLeft - 20) + 'px';
});
moveRightBtn.addEventListener('click', () => {
const currentMarginLeft = parseInt(window.getComputedStyle(movingBlock).marginLeft, 10);
movingBlock.style.marginLeft = (currentMarginLeft + 20) + 'px';
});
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.