Checkbox复选框是一个可能每个网站都在使用的HTML元素,但大多数人并不给它们设置样式,因此在绝大多数网站它们看起来是同样的。为何不把你的网站中的Checkbox设置一个不同凡响的样式,甚至可让它看起来一点也不像复选框。 在本教程中,咱们将建立5个不一样的选择框,你能够在你的网站上使用它。 css-style-checkboxes 查看演示,能够看到咱们将要建立的复选框样式。 演示地址 首先,须要添加一段CSS隐藏全部的Checkbox复选框,下面咱们会改变它的外观。要作到点须要添加一段代码到你的CSS文件中。 /** * 隐藏默认的checkbox */ input[type=checkbox] { visibility: hidden; } 隐藏掉全部的Checkbox复选框后,咱们须要添加一个label HTML元素,咱们都知道,当点击的有for属性的label标签时,对应的Checkbox复选框会被选中。这意味着,咱们能够经过label的点击事件来处理咱们的Checkbox复选框。 样式一 checkbox-one 此复选框风格就像一个解锁滑块,滑块选中和未选中状态会显示在的不一样位置。当单击滑块按钮(label标签),将会选中复选框,而后滑块移动到ON位置。 咱们开始建立复选框区的HTML。 <section> <!-- Checbox One --> <h3>Checkbox One</h3> <div class="checkboxOne"> <input type="checkbox" value="1" id="checkboxOneInput" name="" /> <label for="checkboxOneInput"></label> </div> </section> 由于这个样式的复选框,一个label不足以完成任务,咱们用一个DIV元素包含checkbox,咱们须要使用它们来作黑色条带和圆角。 /** * Create the slider bar */ .checkboxOne { width: 40px; height: 10px; background: #555; margin: 20px 80px; position: relative; border-radius: 3px; } 如今,咱们能够把label做为条带上的滑块,咱们但愿按钮效果是从条带的一侧移动到另外一侧,咱们能够添加label的过渡。 /** * Create the slider from the label */ .checkboxOne label { display: block; width: 16px; height: 16px; border-radius: 50%; -webkit-transition: all .5s ease; -moz-transition: all .5s ease; -o-transition: all .5s ease; -ms-transition: all .5s ease; transition: all .5s ease; cursor: pointer; position: absolute; top: -3px; left: -3px; background: #ccc; } 如今这个滑块在选中(关闭)位置,当咱们选中复选框,咱们但愿有一个反应发生,因此咱们能够移动滑块到另外一端。咱们须要知道,判断复选框被选中,若是是则改变label元素的left属性。 /** * Move the slider in the correct position if the checkbox is clicked */ .checkboxOne input[type=checkbox]:checked + label { left: 27px; } 这就是你须要的第一个Checkbox复选框的CSS。 样式二 checkbox-two 此复选框风格像样式同样,但不一样的是,这个滑块按钮会改变颜色。当您单击滑块按钮,它移动到条带的另外一边,并改变按钮的颜色。 HTML代码和样式一是彻底同样的。 <section> <!-- Checbox Two --> <h3>Checkbox Two</h3> <div class="checkboxTwo"> <input type="checkbox" value="1" id="checkboxTwoInput" name="" /> <label for="checkboxTwoInput"></label> </div> </section> 这个DIV会变成比样式一大一些的条带,label依然是做为滑块,使用下面的CSS来定义它。 /** * Checkbox Two */ .checkboxTwo { width: 120px; height: 40px; background: #333; margin: 20px 60px; border-radius: 50px; position: relative; } 这个样式中间有一个黑色的条,滑块会沿着它左右滑动,可是DIV元素已经使用了,因此咱们须要用:before伪类建立一个新的元素。 /** * Create the line for the circle to move across */ .checkboxTwo:before { content: ''; position: absolute; top: 19px; left: 14px; height: 2px; width: 90px; background: #111; } 和样式一同样,接下来咱们为label写CSS样式,把它用做滑块。 /** * Create the circle to click */ .checkboxTwo label { display: block; width: 22px; height: 22px; border-radius: 50%; -webkit-transition: all .5s ease; -moz-transition: all .5s ease; -o-transition: all .5s ease; -ms-transition: all .5s ease; transition: all .5s ease; cursor: pointer; position: absolute; top: 9px; z-index: 1; left: 12px; background: #ddd; } 我要实现和样式一差很少的选中状态,当选中时改变label的left和background属性。 /** * Create the click event for the checkbox */ .checkboxTwo input[type=checkbox]:checked + label { left: 84px; background: #26ca28; } 样式三 checkbox-three 这个复选框的样式比样式二更复杂一些,它和前面的例子同样会左右滑动,而且当改变选中和未选中的状态时,滑块滑动到另外一侧而且在原位置显示对应的文本。 首先,咱们写HTML代码,这和前面是相同的。 <section> <!-- Checbox Three --> <h3>Checkbox Three</h3> <div class="checkboxThree"> <input type="checkbox" value="1" id="checkboxThreeInput" name="" /> <label for="checkboxThreeInput"></label> </div> </section> 而后,咱们用相同的方式把div做为滑块,下面的代码会建立一个黑色圆角的条带,咱们能够把滑块和文本放到里面。 /** * Checkbox Three */ .checkboxThree { width: 120px; height: 40px; background: #333; margin: 20px 60px; border-radius: 50px; position: relative; } 当滑块处于未选中状态时,滑块会在左侧,而且右边显示”OFF”,当点击的时候,滑块移动到右侧,左侧显示”ON”。 可是元素数量不足以让咱们实现这些功能,因此咱们要用:before和:after两个伪类建立两个元素,分别放置”ON”和”OFF”。 /** * Create the text for the On position */ .checkboxThree:before { content: 'On'; position: absolute; top: 12px; left: 13px; height: 2px; color: #26ca28; font-size: 16px; } /** * Create the label for the off position */ .checkboxThree:after { content: 'Off'; position: absolute; top: 12px; left: 84px; height: 2px; color: #ddd; font-size: 16px; } 和前面同样,咱们来添加滑块的样式,当被点击时它会移动到另外一侧,而且改变颜色。 /** * Create the pill to click */ .checkboxThree label { display: block; width: 52px; height: 22px; border-radius: 50px; -webkit-transition: all .5s ease; -moz-transition: all .5s ease; -o-transition: all .5s ease; -ms-transition: all .5s ease; transition: all .5s ease; cursor: pointer; position: absolute; top: 9px; z-index: 1; left: 12px; background: #ddd; } /** * Create the checkbox event for the label */ .checkboxThree input[type=checkbox]:checked + label { left: 60px; background: #26ca28; } 样式四 checkbox-four 在这个样式中,咱们会建立两个圆形,当点击时改变里面的圆形的颜色表示选中与未选中的状态。 和前面同样的HTML代码。 <section> <!-- Checbox Four --> <h3>Checkbox Four</h3> <div class="checkboxFour"> <input type="checkbox" value="1" id="checkboxFourInput" name="" /> <label for="checkboxFourInput"></label> </div> </section> 接下来咱们要为checkbox建立外面的圆形,使用CSS的border-radius属性,而且设置为100%就能够建立一个正圆形。 /** * Checkbox Four */ .checkboxFour { width: 40px; height: 40px; background: #ddd; margin: 20px 90px; border-radius: 100%; position: relative; -webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.5); -moz-box-shadow: 0px 1px 3px rgba(0,0,0,0.5); box-shadow: 0px 1px 3px rgba(0,0,0,0.5); } 而后咱们用label元素来建立一个小一点的圆形,它会根据checkbox状态来改变颜色。 /** * Create the checkbox button */ .checkboxFour label { display: block; width: 30px; height: 30px; border-radius: 100px; -webkit-transition: all .5s ease; -moz-transition: all .5s ease; -o-transition: all .5s ease; -ms-transition: all .5s ease; transition: all .5s ease; cursor: pointer; position: absolute; top: 5px; left: 5px; z-index: 1; background: #333; -webkit-box-shadow:inset 0px 1px 3px rgba(0,0,0,0.5); -moz-box-shadow:inset 0px 1px 3px rgba(0,0,0,0.5); box-shadow:inset 0px 1px 3px rgba(0,0,0,0.5); } 当复选框被选中的时候,咱们要改变内圈的背景颜色来表示选中状态。 /** * Create the checked state */ .checkboxFour input[type=checkbox]:checked + label { background: #26ca28; } 样式五 checkbox-five 这个复选框的样式有些不一样,它看起来只是比浏览器默认的checkbox样式稍微好了些,可是不一样的是咱们能够根据本身的须要来定义它的样式了。 首先仍是同样的HTML代码 <section> <!-- Checbox Five --> <h3>Checkbox Five</h3> <div class="checkboxFive"> <input type="checkbox" value="1" id="checkboxFiveInput" name="" /> <label for="checkboxFiveInput"></label> </div> </section> 在前面的例子中,咱们把div做为checkbox的滑动条带或者外部的圆圈,可是这一次咱们不须要了,可使用div元素来设置复选框的区域。 /** * Checkbox Five */ .checkboxFive { width: 25px; margin: 20px 100px; position: relative; } label标签用于Click事件和咱们要定义的复选框的方框样式。 /** * Create the box for the checkbox */ .checkboxFive label { cursor: pointer; position: absolute; width: 25px; height: 25px; top: 0; left: 0; background: #eee; border:1px solid #ddd; } 接下来,咱们要建立方框中的对勾,对于这一点,咱们可使用:after伪类建立一个新的元素,为了实现这个样式,咱们能够建立一个5px x 9px的长方形并给他加上边框。这时候咱们去掉上面和右边的边框以后,它会看起来像一个字母L。而后咱们可使用CSS的transform属性让它旋转一下,这样看起来就像是一个对勾。 /** * Display the tick inside the checkbox */ .checkboxFive label:after { opacity: 0.2; content: ''; position: absolute; width: 9px; height: 5px; background: transparent; top: 6px; left: 7px; border: 3px solid #333; border-top: none; border-right: none; -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -o-transform: rotate(-45deg); -ms-transform: rotate(-45deg); transform: rotate(-45deg); } 在上面的CSS中,咱们已经设置它的透明度为0.2,因此你会看到的复选框有一个半透明的对勾。你能够在悬停的时候加深一点,在选中时,能够把设置为不透明。 /** * Create the hover event of the tick */ .checkboxFive label:hover::after { opacity: 0.5; } /** * Create the checkbox state for the tick */ .checkboxFive input[type=checkbox]:checked + label:after { opacity: 1; } 这将会为你建立全新的checkbox复选框样式。 观看演示,看看这些复选框是如何工做的。 演示地址 本文翻译自 How To Style A Checkbox With CSS 自定义select样式 Selectyze jquery plugin – Skin your own selects lists with jQuery & CSS 拓展阅读 CSS3 Checkbox Styles from:http://www.xiumu.org/technology/style-checkboxes-with-css.shtml