怎样安装Dreamweaver的jquery扩展,我们通常会用dreamweaver这个网页设计软件来编写网页前台代码,在编写代码时会经常出现下拉的菜单供我们选择,为我们编写代码节省了很多的时间。这样......
2023-03-17 342 JQUERY DREAMWEAVER
html css3 jq苹果风格金属开关按钮
准备好需要用到的图标。
新建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']});
});
代码整体结构。
查看效果。
以上方法由办公区教程网编辑摘抄自百度经验可供大家参考!
相关文章
怎样安装Dreamweaver的jquery扩展,我们通常会用dreamweaver这个网页设计软件来编写网页前台代码,在编写代码时会经常出现下拉的菜单供我们选择,为我们编写代码节省了很多的时间。这样......
2023-03-17 342 JQUERY DREAMWEAVER
jQuery MiniUI 快速入门,前段时间由于工作的原因接触到MiiUI。感觉MiiUI很强大,使用起来也很舒服。下面我就带领大家快速的使用MiiUI。MiiUI-专业WeUI控件库它能缩短开发时......
2023-03-17 330 JQUERY
怎么使用JQuery Mobile开发移动网站,现在越来越多的人用网站来做手机a,这样的好处是,可以做一个网站,基本上可以做到多个平台adroid,io,w,都可以使用。这里使用JQueryMoile......
2023-03-17 374 JQUERY