<div id="description">
<p>У цьому коді кожне зображення має власну змінну CSS <strong>--translate-value</strong>, яка визначає значення функції <em>translateZ()</em> для кожного зображення.</p>
<p>Просто наведіть курсор на зображення для демонстрації прикладу:</p>
</div>
<div class="container">
<img class="image" src="https://picsum.photos/100/100" alt="Sample image" style="--translate-value: -50px;">
<img class="image" src="https://picsum.photos/100/100" alt="Sample image" style="--translate-value: 0;">
<img class="image" src="https://picsum.photos/100/100" alt="Sample image" style="--translate-value: 30px;">
<img class="image" src="https://picsum.photos/100/100" alt="Sample image" style="--translate-value: -20px;">
</div>
<div class="container">
<span class="image-caption">-50px</span>
<span class="image-caption">Без зсуву</span>
<span class="image-caption">30px</span>
<span class="image-caption">-20px</span>
</div>
#description {
font-style: italic;
text-align: center;
line-height: 1.5;
margin-bottom: 50px;
padding: 12px 16px;
background-color: #f7f7f7;
border: 1px solid #ccc;
}
.container {
display: flex;
justify-content: center;
align-items: center;
background-color: #f2f2f2;
perspective: 200px;
padding: 5px;
}
.image {
width: 100px;
height: 100px;
margin: 10px;
transition: transform 0.5s ease;
position: relative;
}
.image:hover {
transform: translateZ(var(--translate-value));
}
.image-caption {
width: 20%;
text-align: center;
font-size: 12px;
color: #888;
margin-top: 15px;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.