如何使用css,把div设置为一个椭圆容器,在做html页面开发时,我们一般都是使用div来做容器的,如果你需要一个椭圆形的容器,我们可以使用div来实现的,下面来看一下。......
html+css3+jq苹果风格金属开关按钮
html css3 jq苹果风格金属开关按钮
工具/原料
- adobe dreamweaver
方法/步骤
准备好需要用到的图标。
新建html文档。
书写hmtl代码。
div id="page">
form method="get" action="./">
ul>
li>
label for="ch_effects">百度经验百度经验: /label>
input type="checkbox" id="ch_effects" name="ch_effects" data-on="Show effects" data-off="Hide effects" />
/li>
li>
label for="ch_location">百度经验: /label>
input type="checkbox" id="ch_location" name="ch_location" checked />
/li>
li>
label for="ch_showsearch">百度经验: /label>
input type="checkbox" id="ch_showsearch" name="ch_showsearch" />
/li>
li>
label for="ch_emails">百度经验: /label>
input type="checkbox" id="ch_emails" name="ch_emails" data-on="ON" data-off="OFF" />
/li>
/ul>
/form>
/div>
书写styles.css代码。
* { margin: 0; padding: 0; }
body { background: url('../img/page_bg.png') repeat-x; font: 13px/1.3 'Segoe UI', Arial, sans-serif; color: #999; }
#page { width: 550px; margin: 150px auto 100px; }
form ul { list-style: none; }
form li { padding: 15px; }
form li:nth-child(even) { background: url('../img/line_bg.png') repeat-y center center; }
form label { width: 370px; font-size: 20px; color: #bbb; display: inline-block; }
a, a:visited { text-decoration: none; outline: none; color: #97cae6; }
a:hover { text-decoration: underline; }
#footer { background-color: #212121; position: fixed; width: 100%; height: 70px; bottom: 0; left: 0; z-index: 100000; }
#footer h2 { font-size: 20px; font-weight: normal; left: 50%; margin-left: -400px; padding: 22px 0; position: absolute; width: 400px; color: #eee; }
#footer a.tzine, a.tzine:visited { background: url("../img/tzine.png") no-repeat right top; border: none; text-decoration: none; color: #FCFCFC; font-size: 12px; height: 70px; left: 50%; line-height: 31px; margin: 23px 0 0 110px; position: absolute; top: 0; width: 290px; }
书写jquery.tzCheckbox.css代码。
.tzCheckBox { background: url('background.png') no-repeat right bottom; display: inline-block; min-width: 60px; height: 33px; white-space: nowrap; position: relative; cursor: pointer; margin-left: 14px; }
.tzCheckBox.checked { background-position: top left; margin: 0 14px 0 0; }
.tzCheckBox .tzCBContent { color: white; line-height: 31px; padding-right: 38px; text-align: right; }
.tzCheckBox.checked .tzCBContent { text-align: left; padding: 0 0 0 38px; }
.tzCBPart { background: url('background.png') no-repeat left bottom; width: 14px; position: absolute; top: 0; left: -14px; height: 33px; overflow: hidden; }
.tzCheckBox.checked .tzCBPart { background-position: top right; left: auto; right: -14px; }
script src="js/jquery.min.js">/script>
script src="jquery.tzCheckbox/jquery.tzCheckbox.js">/script>
书写jquery.tzCheckbox.js并添加js代码。
(function($){
$.fn.tzCheckbox = function(options){
options = $.extend({
labels : ['ON','OFF']
},options);
return this.each(function(){
var originalCheckBox = $(this),
labels = [];
if(originalCheckBox.data('on')){
labels[0] = originalCheckBox.data('on');
labels[1] = originalCheckBox.data('off');
}
else labels = options.labels;
var checkBox = $('span>',{
className: 'tzCheckBox ' (this.checked?'checked':''),
html:'span class="tzCBContent">' labels[this.checked?0:1]
'/span>span class="tzCBPart">/span>'
});
checkBox.insertAfter(originalCheckBox.hide());
checkBox.click(function(){
checkBox.toggleClass('checked');
var isChecked = checkBox.hasClass('checked');
originalCheckBox.attr('checked',isChecked);
checkBox.find('.tzCBContent').html(labels[isChecked?0:1]);
});
originalCheckBox.bind('change',function(){
checkBox.click();
});
});
};
})(jQuery);
$(document).ready(function(){
$('input[type=checkbox]').tzCheckbox({labels:['Enable','Disable']});
});
代码整体结构。
查看效果。
注意事项
- jquery.min.js是个js包,可以网上下载。
以上方法由办公区教程网编辑摘抄自百度经验可供大家参考!
相关文章
- 详细阅读
- 详细阅读
-
HTML5创作工具,MAKA 2.0史上最全操作指南详细阅读
HTML5创作工具,MAKA 2.0史上最全操作指南,超过15000种模板组合。还怕你没有发挥的空间吗?MAKA(中文:码卡)作为中国最早推出移动端卡片式交互模式的创新者,随着HTML5技术的日渐成熟......
2023-03-16 433 HTML