DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> HTML基礎知識 >> HTML和Xhtml >> 漂亮的checkbox樣式(多選框)完美兼容IE8/9/10,FF等
漂亮的checkbox樣式(多選框)完美兼容IE8/9/10,FF等
編輯:HTML和Xhtml     
說起來汗顏,如此常用的checkbox我改變樣式,居然需要百度,而且百度很久,更可氣的是百度很久找不到可行的解決方案。

後來在csscheckbox.com上找到很多樣式,結果一測兼容性IE不行。如此一來,耽誤了很久的時間。

抄了近道屢試不行,回歸JQuery UI,不用說兼容性挺好,而且樣式自己隨心畫。

在此記錄一款checkbox的樣式,供大家也供我以後方便使用。
 
有三種狀態,default、hover和active,並測試過,能完美兼容IE8/9/10,FF等。

復制代碼代碼如下:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script>
$(function() {
$( "#check" ).button();
$( "#format" ).buttonset();
});
</script>
<style>
.ui-button-text-only .ui-button-text {
padding: 8px;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
background: url(images/safari-checkbox.png) 0 0 no-repeat; border:none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
background: url(images/safari-checkbox.png) -16px 0 no-repeat; border:none;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
background: url(images/safari-checkbox.png) 0 -16px no-repeat; border:none;
}
</style>
</head>
<body>
<input type="checkbox" id="check" /><label for="check"></label>
</body>
</html>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved