網頁制作Poluoluo文章簡介:保持新鮮感:網頁每次加載不同樣式的實現方法.
在上一篇文章中曾提到要給自己的微博客制作多個樣式,然後用戶每次訪問時隨機載入樣式,讓微博在視覺上保持新鮮感。雖然思路與實現都比較簡單,但還是想記錄下來,與大家分享。
【明確需求】
【實現思路】
【實現代碼】
比較簡單,我這裡就直接貼代碼了,裡面略加注釋:
var Init = { //樣式表文件目錄路徑 baseSkinUrl : "/blog/css/skin/", //樣式表文件名稱列表 styles : ["default", "skin1", "skin2", "skin3"], //樣式cookie的key值 cookieKey : "css9_blog_random_css", //定義方法,獲取min至max間的隨機數,包含min及max getRandomNum : function(min, max){ return min + Math.floor(Math.random() * (max - min + 1)); }, //定義方法,獲取cookie值 getCookie : function(name) { var arr = document.cookie.match(new RegExp("(^| )" + name + "=([^;]*)(;|$)")); if (arr != null) { return unescape(arr[2]); } return null; }, //定義方法,設置cookie值 setCookie : function(sName,sValue,objHours,sPath,sDomain,bSecure){ var sCookie = sName + "=" + encodeURIComponent(sValue); if (objHours) { var date = new Date(); var ms = objHours * 3600 * 1000; date.setTime(date.getTime() + ms); sCookie += ";expires=" + date.toGMTString(); } if (sPath) { sCookie += ";path=" + sPath; } if (sDomain) { sCookie += ";domain=" + sDomain; } if (bSecure) { sCookie += ";secure"; } document.cookie=sCookie; }, //定義方法,通過獲取隨機數隨機加載CSS loadCSS : function(){ var length = this.styles.length, random = this.getRandomNum(0, length-1), cookieStyle = this.getCookie(this.cookieKey), currentStyle = "default"; //如果當前隨機取到的樣式與cookie中樣式相同,則重新計算隨機數 while(this.styles[random] == cookieStyle) { random = this.getRandomNum(0, length-1) } currentStyle = this.styles[random]; //將新樣式存入cookie,cookie有效時間為24小時 this.setCookie(this.cookieKey, currentStyle, 24, "/", "css9.net", false); //若樣式名稱不為"default"默認樣式,則向<head />標簽中寫入定制樣式 if(currentStyle != "default") { document.write('<link rel="stylesheet" type="text/css" href="' + this.baseSkinUrl + this.styles[random] + '.css" />'); } } } Init.loadCSS(); //執行隨機加載CSS方法
將上面js代碼保存為Init.js文件,並在<head />中加載該js文件。
【查看效果】
可以去我的微博客查看效果,多次刷新效果更好呦 。現在只有三種樣式,以後會逐漸添加更多樣式。
提示: 如果你的網頁中已經使用了jquery,那麼可以用我之前介紹的jQuery cookie操作插件實現cookie的讀寫操作,不必再定義代碼中的setCookie和getCookie方法。