کتابخانه کامپوننتها
☰
خانه
کامپوننتها
درباره
همه دستهها
تغییر حالت
دکمه
فرم
پترن
چک باکس
کارت
🔍
چک باکس بنفش
دسته: چک باکس | تگها: —
HTML
CSS
Prompt
<label class="container"> <input type="checkbox" checked="checked"> <div class="checkmark"></div> </label>
کپی
.container input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; border-radius: 5px; } .container { display: block; position: relative; cursor: pointer; font-size: 20px; user-select: none; border-radius: 5px; box-shadow: 2px 2px 0px rgb(183, 183, 183); } /* Create a custom checkbox */ .checkmark { position: relative; top: 0; left: 0; height: 1.3em; width: 1.3em; background-color: #ccc; border-radius: 5px; } /* When the checkbox is checked, add a blue background */ .container input:checked ~ .checkmark { box-shadow: 3px 3px 0px rgb(183, 183, 183); transition: all 0.2s; opacity: 1; background-image: linear-gradient(45deg, rgb(100, 61, 219) 0%, rgb(217, 21, 239) 100%); } .container input ~ .checkmark { transition: all 0.2s; opacity: 1; box-shadow: 1px 1px 0px rgb(183, 183, 183); } .checkmark:after { content: ""; position: absolute; opacity: 0; transition: all 0.2s; } /* Show the checkmark when checked */ .container input:checked ~ .checkmark:after { opacity: 1; transition: all 0.2s; } .container .checkmark:after { left: 0.45em; top: 0.25em; width: 0.25em; height: 0.5em; border: solid white; border-width: 0 0.15em 0.15em 0; transform: rotate(45deg); }
کپی
{ "checked": true, "disabled": false, "size": "1.3em", "borderRadius": "5px", "fontSize": "20px", "userSelect": "none", "transitionDuration": "0.2s", "unchecked": { "backgroundColor": "#cccccc", "boxShadow": "2px 2px 0px rgb(183, 183, 183)", "markShadow": "1px 1px 0px rgb(183, 183, 183)", "opacity": 1 }, "checkedState": { "gradient": { "angle": "45deg", "from": "rgb(100, 61, 219)", "to": "rgb(217, 21, 239)" }, "boxShadow": "3px 3px 0px rgb(183, 183, 183)", "opacity": 1 }, "checkmark": { "color": "#ffffff", "thickness": "0.15em", "width": "0.25em", "height": "0.5em", "top": "0.25em", "left": "0.45em", "rotate": "45deg" } }
کپی