mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
112 lines
No EOL
2.4 KiB
HTML
112 lines
No EOL
2.4 KiB
HTML
<div class="radiogroup">
|
|
<div class="wrapper">
|
|
<input value="a" id="a" name="app" type="radio" class="state" />
|
|
<label for="a" class="label">
|
|
<div class="indicator"></div>
|
|
<span class="text">a) close</span>
|
|
</label>
|
|
</div>
|
|
<div class="wrapper">
|
|
<input value="b" id="b" name="app" type="radio" class="state" />
|
|
<label for="b" class="label">
|
|
<div class="indicator"></div>
|
|
<span class="text">b) remove</span>
|
|
</label>
|
|
</div>
|
|
<div class="wrapper">
|
|
<input value="c" id="c" name="app" type="radio" class="state" />
|
|
<label for="c" class="label">
|
|
<div class="indicator"></div>
|
|
<span class="text">c) delete</span>
|
|
</label>
|
|
</div>
|
|
<div class="wrapper">
|
|
<input value="d" id="d" name="app" type="radio" class="state" />
|
|
<label for="d" class="label">
|
|
<div class="indicator"></div>
|
|
<span class="text">d) all of the above</span>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
/* From Uiverse.io by neerajbaniwal - Tags: radio, submit, switcher, html, css, 3d button */
|
|
.radiogroup {
|
|
padding: 48px 64px;
|
|
border-radius: 16px;
|
|
background: #ecf0f3;
|
|
box-shadow: 4px 4px 4px 0px #d1d9e6 inset, -4px -4px 4px 0px #ffffff inset;
|
|
}
|
|
|
|
.wrapper {
|
|
margin: 8px 0;
|
|
}
|
|
|
|
.state {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
opacity: 1e-5;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.label {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
color: #394a56;
|
|
}
|
|
|
|
.text {
|
|
margin-left: 16px;
|
|
opacity: 0.6;
|
|
transition: opacity 0.2s linear, transform 0.2s ease-out;
|
|
}
|
|
|
|
.indicator {
|
|
position: relative;
|
|
border-radius: 50%;
|
|
height: 30px;
|
|
width: 30px;
|
|
box-shadow: -8px -4px 8px 0px #ffffff, 8px 4px 12px 0px #d1d9e6;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.indicator::before,
|
|
.indicator::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 10%;
|
|
left: 10%;
|
|
height: 80%;
|
|
width: 80%;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.indicator::before {
|
|
box-shadow: -4px -2px 4px 0px #d1d9e6, 4px 2px 8px 0px #fff;
|
|
}
|
|
|
|
.indicator::after {
|
|
background-color: #ecf0f3;
|
|
box-shadow: -4px -2px 4px 0px #fff, 4px 2px 8px 0px #d1d9e6;
|
|
transform: scale3d(1, 1, 1);
|
|
transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
|
|
}
|
|
|
|
.state:checked ~ .label .indicator::after {
|
|
transform: scale3d(0.975, 0.975, 1) translate3d(0, 10%, 0);
|
|
opacity: 0;
|
|
}
|
|
|
|
.state:focus ~ .label .text {
|
|
transform: translate3d(8px, 0, 0);
|
|
opacity: 1;
|
|
}
|
|
|
|
.label:hover .text {
|
|
opacity: 1;
|
|
}
|
|
|
|
</style>
|
|
|