给网页换皮肤的效果

2025-03-20 14:11:34

1、在页面中写入下面代码:html(由于效果简单所以代码也很少):<ul> <li id="gray" class="select"></li> <li id="red"></li> <li id="blue"></li> <li id="yellow"></li> <li id="green"></li> <li id="black"></li> </ul>

2、在上面代码的下面写入下面代码具体如下:<style>ul{margin砜实蛰斓:0;padding:0;width多唉捋胝:200px;height:28px;border:1px solid #fff;list-style:none;}ul li{margin:4px 0 0 10px;width:20px;height:20px;border-radius:3px;float:left;}.select{position:relative;width:20px;height:20px;background-image:url("../images/select.png");z-index:20;}ul li#gray{background-color:gray;}ul li#red{background-color:red;}ul li#blue{background-color:blue;}ul li#yellow{background-color:yellow;}ul li#green{background-color:green;}ul li#black{background-color:black;}</style>

3、在页面最底部写入下面代码<script type="text/javascript">$("ul li").click(function(){$(this).addClass("select").siblings("li").removeClass("select");$(".color").attr("href","../css/"+this.id+".css"); });</script>

4、来看看最终效果吧这个呢,是切换背景颜色的,下午做个切换背景图片的,哈哈,期待吧

给网页换皮肤的效果
给网页换皮肤的效果
声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
猜你喜欢