galaxy/Checkboxes/PriyanshuGupta28_massive-ape-73.html

82 lines
1.7 KiB
HTML

<div class="checkbox-wrapper">
<input checked="" type="checkbox">
<svg viewBox="0 0 35.6 35.6">
<circle class="background" cx="17.8" cy="17.8" r="17.8"></circle>
<circle class="stroke" cx="17.8" cy="17.8" r="14.37"></circle>
<polyline class="check" points="11.78 18.12 15.55 22.23 25.17 12.87"></polyline>
</svg>
</div>
<style>
/* From Uiverse.io by PriyanshuGupta28 - Tags: checkbox, docs checkbox, cool checkbox, circle-checkbox */
.checkbox-wrapper:hover .check {
stroke-dashoffset: 0;
}
.checkbox-wrapper {
position: relative;
display: inline-block;
width: 40px;
height: 40px;
}
.checkbox-wrapper .background {
fill: rgb(75, 50, 121);
transition: ease all 0.6s;
-webkit-transition: ease all 0.6s;
}
.checkbox-wrapper .stroke {
fill: none;
stroke: #fff;
stroke-miterlimit: 10;
stroke-width: 2px;
stroke-dashoffset: 100;
stroke-dasharray: 100;
transition: ease all 0.6s;
-webkit-transition: ease all 0.6s;
}
.checkbox-wrapper .check {
fill: none;
stroke: #fff;
stroke-linecap: round;
stroke-linejoin: round;
stroke-width: 2px;
stroke-dashoffset: 22;
stroke-dasharray: 22;
transition: ease all 0.6s;
-webkit-transition: ease all 0.6s;
}
.checkbox-wrapper input[type=checkbox] {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
margin: 0;
opacity: 0;
-appearance: none;
-webkit-appearance: none;
}
.checkbox-wrapper input[type=checkbox]:hover {
cursor: pointer;
}
.checkbox-wrapper input[type=checkbox]:checked + svg .background {
fill: #421c64;
}
.checkbox-wrapper input[type=checkbox]:checked + svg .stroke {
stroke-dashoffset: 0;
}
.checkbox-wrapper input[type=checkbox]:checked + svg .check {
stroke-dashoffset: 0;
}
</style>