Home > Web Front-end > HTML Tutorial > Custom beautification checkbox combination based on CSS3_html/css_WEB-ITnose

Custom beautification checkbox combination based on CSS3_html/css_WEB-ITnose

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-24 11:46:37
Original
1120 people have browsed it

Today we are going to share a set of very beautiful CSS3 custom checkboxes. Each checkbox has its own characteristics. There are several checkboxes that will have animation effects when selected, which is a very good CSS3 custom beautification checkbox combination. In addition, the jQuery implementation of the beautified version of radio buttons and check boxes that I shared before is also very good.

Online preview Source code download

Implemented code:

 <div class="container">            <div class="holder">                <div class="center" style="width: 186px;">                    <input type="checkbox" id="checkbox-1-1" /><label for="checkbox-1-1"></label>                    <input type="checkbox" id="checkbox-1-2" checked /><label for="checkbox-1-2"></label>                    <input type="checkbox" id="checkbox-1-3" /><label for="checkbox-1-3"></label>                </div>            </div>            <div class="holder" style="background: #473C33;">                <div class="center" style="width: 269px;">                    <input type="checkbox" id="checkbox-2-1" /><label for="checkbox-2-1">I AGREE</label>                </div>            </div>            <div class="holder" style="background: #fff;">                <div class="center" style="width: 186px;">                    <input type="checkbox" id="checkbox-3-1" /><label for="checkbox-3-1"></label>                    <input type="checkbox" id="checkbox-3-2" checked /><label for="checkbox-3-2"></label>                    <input type="checkbox" id="checkbox-3-3" /><label for="checkbox-3-3"></label>                </div>            </div>            <div class="holder" style="background: #FFAE94;">                <div class="center" style="width: 193px;">                    <input type="checkbox" id="checkbox-4-1" /><label for="checkbox-4-1"></label>                    <input type="checkbox" id="checkbox-4-2" /><label for="checkbox-4-2"></label>                    <input type="checkbox" id="checkbox-4-3" checked /><label for="checkbox-4-3"></label>                </div>            </div>            <div class="holder" style="background: #5FA6D6;">                <div class="center" style="width: 180px;">                    <input type="checkbox" id="checkbox-5-1" checked /><label for="checkbox-5-1"></label>                    <input type="checkbox" id="checkbox-5-2" /><label for="checkbox-5-2"></label>                    <input type="checkbox" id="checkbox-5-3" /><label for="checkbox-5-3"></label>                </div>            </div>            <div class="holder" style="background: #AECFE5;">                <div class="center" style="width: 265px;">                    <input type="checkbox" id="checkbox-6-1" /><label for="checkbox-6-1"></label>                    <input type="checkbox" id="checkbox-6-2" /><label for="checkbox-6-2"></label>                    <input type="checkbox" id="checkbox-6-3" /><label for="checkbox-6-3"></label>                    <input type="checkbox" id="checkbox-6-4" checked /><label for="checkbox-6-4"></label>                </div>            </div>            <div class="holder" style="background: #33444E;">                <div class="center" style="width: 467px;">                    <input type="checkbox" id="checkbox-7-1" /><label for="checkbox-7-1"><span>AGREE</span></label>                    <input type="checkbox" id="checkbox-7-2" /><label for="checkbox-7-2"><span>BUY</span></label>                    <input type="checkbox" id="checkbox-7-3" checked /><label for="checkbox-7-3"><span>SELL</span></label>                    <input type="checkbox" id="checkbox-7-4" /><label for="checkbox-7-4"><span>OKAY</span></label>                </div>            </div>            <div class="holder" style="background: #EDFFFB;">                <div class="center" style="width: 361px;">                    <input type="checkbox" id="checkbox-8-1" /><label for="checkbox-8-1"></label>                    <input type="checkbox" id="checkbox-8-2" checked /><label for="checkbox-8-2"></label>                    <input type="checkbox" id="checkbox-8-3" /><label for="checkbox-8-3"></label>                    <input type="checkbox" id="checkbox-8-4" /><label for="checkbox-8-4"></label>                </div>            </div>            <div class="holder" style="background: #A0DAB0;">                <div class="center" style="width: 383px;">                    <input type="checkbox" id="checkbox-9-1" /><label for="checkbox-9-1"></label>                    <input type="checkbox" id="checkbox-9-2" checked /><label for="checkbox-9-2"></label>                    <input type="checkbox" id="checkbox-9-3" /><label for="checkbox-9-3"></label>                    <input type="checkbox" id="checkbox-9-4" /><label for="checkbox-9-4"></label>                </div>            </div>            <div class="holder" style="background: white;">                <div class="center" style="width: 180px;">                    <input type="checkbox" id="checkbox-10-1" /><label for="checkbox-10-1"></label>                    <input type="checkbox" id="checkbox-10-2" checked /><label for="checkbox-10-2"></label>                </div>            </div>            <div class="holder" style="background: #E8EDF0;">                <div class="center" style="width: 211px;">                    <input type="checkbox" id="checkbox-11-1" /><label for="checkbox-11-1"></label>                    <input type="checkbox" id="checkbox-11-2" checked /><label for="checkbox-11-2"></label>                </div>            </div>        </div>
Copy after login

via: http://www.w2bc .com/Article/31234

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template