ZHANBLUe 湛藍國際股份有限公司官網
這是幫 ZHANBLUe 湛藍國際股份有限公司 官網製作的官網,其實完成有好一陣子了,這是搭配我的一個 SaaS 系統開發的網站,之後還會再持續開發新的功能。 不過這個官網相對比較單純就是了,設計也都是給 AI 完成的,這個年代用 AI 開發網站真的是太方便了。

input[type="checkbox"]{
display:none;
}.checked{
display:inline-block;
width:20px;
height:20px;
background:url(check.png);
}
.unchecked{
display:inline-block;
width:20px;
height:20px;
background:url(uncheck.png);
}<span class="checkbox"><input type="checkbox" /></span>Check Inif($(".checkbox").children("input").attr("checked")){
$(".checkbox").addClass("checked");
}else{
$(".checkbox").addClass("unchecked");
}$(".checkbox").click(function(){
if($(this).children("input").attr("checked")){
$(this).children("input").attr({checked: ""});
$(this).removeClass("checked");
$(this).addClass("unchecked");
}else{
$(this).children("input").attr({checked: "checked"});
$(this).removeClass("unchecked");
$(this).addClass("checked");
}
});
留言