Css implements online switching of website style skins

Source: Internet
Author: User
Tip: you can modify some code before running

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <ptml xmlns="http://www.w3.org/1999/xhtml"> <pead> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>Css + javascript switch style skin in real time and save the cookie 111cn.net</title> <style type="text/css">. Themes {border: 1px solid #000 ;}</style> <script language="javascript" type="text/javascript"> <!-- var arrCSS=[ ["","ocean.css"], ["","tangerine.css"], ["","violet.css"], ["","oyster.css"], ["","grass.css"], "" ]; // *** function to replace href="#" *** function v(){ return; } // *** Cookies *** function writeCookie(name, value) { exp = new Date(); exp.setTime(exp.getTime() + (86400 * 1000 * 30)); document.cookie = name + "=" + escape(value) + "; expires=" + exp.toGMTString() + "; path=/"; } function readCookie(name) { var search; search = name + "="; offset = document.cookie.indexOf(search); if (offset != -1) { offset += search.length; end = document.cookie.indexOf(";", offset); if (end == -1){ end = document.cookie.length; } return unescape(document.cookie.substring(offset, end)); }else{ return ""; } } //////////////////////////////////// // StyleSheet //////////////////////////////////// function writeCSS(){ for(var i=0;i<arrCSS.length;i++){ document.write('<link title="css'+i+'" href="'+arrCSS[i][1]+'" rel="stylesheet" disabled="true" type="text/css" />'); } setStyleSheet(readCookie("stylesheet")); } function writeCSSLinks(){ for(var i=0;i<arrCSS.length-1;i++){ if(i>0) document.write(' '); document.write(''+arrCSS[i][0]+''); } } function setStyleSheet(strCSS){ var objs=document.getElementsByTagName("link"); var intFound=0; for(var i=0;i<objs.length;i++){ if(objs[i].type.indexOf("css")>-1&&objs[i].title){ objs[i].disabled = true; if(objs[i].title==strCSS) intFound=i; } } objs[intFound].disabled = false; writeCookie("stylesheet",objs[intFound].title); } writeCSS(); setStyleSheet(readCookie("stylesheet")); // 隐藏显示换肤框 function ShowHideDiv(init) { if(document.getElementById("Sright").style.display == "block"){ document.getElementById("Sright").style.display = "none"; } else{ document.getElementById("Sright").style.display = "block"; } } //--> </script> </pead> <body> <div class="topNav"><p>Css real-time switching style, skin demo by China WEB first stop</p> </div> <div class="blank4"></div> <div class="skin"> <div id="page_options" onclick="ShowHideDiv()">Skin setting options<div id="Sright">Color:<script type="text/javascript">WriteCSSLinks ();</script> </div> </div> </div> <div class="blank4"></div> <div class="NewsBody"> <div class="CoLeft"> <div class="clear"></div> </div> <div class="CoCenter"> <div class="CConter"></div> <div class="clear"></div> </div> <div class="CoRight"> <div class="clear"></div> </div> <div class="clear"></div> </div> <div class="blank4"></div> <div class="footer"></div> </body> </ptml>
Tip: you can modify some code before running
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.