2024年9月6日 星期五
再用 border 做一个小播
<style>
.cone {
--size: 160px;
--color: rgba(0,100,128,.6);
margin: 30px;
position: relative;
left: calc(50% - var(--size) / 2);
top: 20px;
width: var(--size);
height: var(--size);
display: grid;
place-items: center;
}
.cone::before, .cone::after {
position: absolute;
content: '';
width: 0;
height: 0;
border-style: solid;
border-width: calc(var(--size) / 2) calc(var(--size) / 2 - 35px);
border-color: var(--color) transparent;
border-radius: 50%;
}
.cone::after { transform: rotate(90deg); }
</style>
<div class="cone"></div>
|