<div id="description">
<h2>Приклад 1</h2>
<p>Цей приклад демонструє використання CSS-функції circle() для створення еліпсу, який змінює свій вигляд при наведенні курсору.</p>
</div>
<div id="result">
<div class="container">
<div class="circle"></div>
</div>
</div>
#description {
font-style: italic;
text-align: left;
line-height: 1.5;
margin-bottom: 50px;
padding: 12px 16px;
background-color: #f7f7f7;
border: 1px solid #ccc;
}
#result {
display: flex;
justify-content: center;
}
.container {
text-align: center;
}
.circle {
width: 150px;
height: 150px;
background-color: teal;
clip-path: ellipse(20px 50px);
transition: clip-path 0.3s ease;
}
.circle:hover {
clip-path: ellipse(25px 75px);
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.