mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
72 lines
1.6 KiB
HTML
72 lines
1.6 KiB
HTML
<label class="custom-checkbox">
|
|
<input name="dummy" type="checkbox">
|
|
<span class="checkmark"></span>
|
|
</label>
|
|
|
|
<style>
|
|
/* From Uiverse.io by KhaledMatalkah - Tags: checkbox, flip, transition, cool checkbox */
|
|
.custom-checkbox {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
font-size: 16px;
|
|
color: #333;
|
|
transition: color 0.3s;
|
|
}
|
|
|
|
.custom-checkbox input[type="checkbox"] {
|
|
display: none;
|
|
}
|
|
|
|
.custom-checkbox .checkmark {
|
|
width: 24px;
|
|
height: 24px;
|
|
border: 2px solid #333;
|
|
border-radius: 4px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-right: 10px;
|
|
transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
|
|
transform-style: preserve-3d;
|
|
}
|
|
|
|
.custom-checkbox .checkmark::before {
|
|
content: "\2713";
|
|
font-size: 16px;
|
|
color: transparent;
|
|
transition: color 0.3s, transform 0.3s;
|
|
}
|
|
|
|
.custom-checkbox input[type="checkbox"]:checked + .checkmark {
|
|
background-color: #333;
|
|
border-color: #333;
|
|
transform: scale(1.1) rotateZ(360deg) rotateY(360deg);
|
|
}
|
|
|
|
.custom-checkbox input[type="checkbox"]:checked + .checkmark::before {
|
|
color: #fff;
|
|
}
|
|
|
|
.custom-checkbox:hover {
|
|
color: #666;
|
|
}
|
|
|
|
.custom-checkbox:hover .checkmark {
|
|
border-color: #666;
|
|
background-color: #f0f0f0;
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.custom-checkbox input[type="checkbox"]:focus + .checkmark {
|
|
box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.2);
|
|
outline: none;
|
|
}
|
|
|
|
.custom-checkbox .checkmark,
|
|
.custom-checkbox input[type="checkbox"]:checked + .checkmark {
|
|
transition: background-color 1.3s, border-color 1.3s, color 1.3s, transform 0.3s;
|
|
}
|
|
|
|
</style>
|