1,主题
打开http://jqueryui.com/themeroller/
如下图:Gallery选项卡--可选定主题预览,下载或进入编辑
如下图,Roll Your Own选项卡---调整主题,然后下载
2,应用
1,jQuery UI CSS Framework:Theming API
3,主题切换
1,themeswitcher官网上找不到??http://jqueryui.com/themeroller/themeswitchertool???
对应的API: http://docs.jquery.com/UI/Theming/ThemeSwitcher
另外在网络上找到的该plugin的代码(http://blog.rbe.homeip.net/posts/jquery-themeswitcher)
Code /* jQuery plugin themeswitcher ---------------------------------------------------------------------*/ $.fn.themeswitcher = function(settings){ var options = jQuery.extend({ loadTheme: null, initialText: 'Switch Theme', 150, height: 200, buttonPreText: 'Theme: ', closeOnSelect: true, buttonHeight: 14, cookieName: 'jquery-ui-theme', onOpen: function(){}, onClose: function(){}, onSelect: function(){}, useStandard:true, cssPrefix:"http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.10/themes/", cssSuffix:"/jquery-ui.css", imgPrefix:"http://static.jquery.com/ui/themeroller/images/themeGallery/theme_90_", imgSuffix:".png", imageLocation:"/javascripts/jquery/themeswitcher/", themes:{}, useCookie:true }, settings); if(options.useStandard) $.extend(options.themes,{ 'base':{icon:options.imageLocation+"base.png"}, 'black-tie':{}, 'blitzer':{}, 'cupertino':{}, 'dark-hive':{}, 'dot-luv':{}, 'eggplant':{}, 'excite-bike':{}, 'flick':{}, 'hot-sneaks':{}, 'humanity':{}, 'le-frog':{}, 'mint-choc':{icon:options.imgPrefix+"mint_choco"+options.imgSuffix,css:options.cssPrefix+"mint-choco"+options.cssSuffix}, 'overcast':{}, 'pepper-grinder':{}, 'redmond':{icon:"windoze"}, 'smoothness':{}, 'south-street':{}, 'start':{icon:'start_menu'}, 'sunny':{}, 'swanky-purse':{}, 'trontastic':{}, 'ui-darkness':{icon:options.imgPrefix+'ui_dark'+options.imgSuffix,css:options.cssPrefix+'dark'+options.cssSuffix}, 'ui-lightness':{icon:options.imgPrefix+"ui_light"+options.imgSuffix,css:options.cssPrefix+"ui-light"+options.cssSuffix} }); var theme_ul=""; for (var i in options.themes){ css=options.themes[i].css || options.cssPrefix+i+options.cssSuffix; img=options.themes[i].icon || options.imgPrefix+i.replace('-','_')+options.imgSuffix; theme_ul+="<li><a href='"+css+"'><img src='"+img+"' title='"+i+"' alt='"+img+"'/><span class='themeName''>"+i+"</span></li>"; } theme_ul="<ul>"+theme_ul+"</ul>" //markup var button = $('<a href="#" class="jquery-ui-themeswitcher-trigger"><span class="jquery-ui-themeswitcher-icon"></span><span class="jquery-ui-themeswitcher-title">'+ options.initialText +'</span></a>'); var switcherpane = $('<div class="jquery-ui-themeswitcher"><div id="themeGallery">'+theme_ul+'</div></div>') .find('div').removeAttr('id'); //button events button.click(function(){ if(switcherpane.is(':visible')) switcherpane.spHide(); else switcherpane.spShow(); return false; }); //menu events (mouseout didn't work...) switcherpane.hover(function(){},function(){if(switcherpane.is(':visible')){$(this).spHide();}}); //show/hide panel functions $.fn.spShow = function(){ $(this).css({top: button.offset().top + options.buttonHeight + 6, left: button.offset().left}).slideDown(50); button.css(button_active); options.onOpen(); } $.fn.spHide = function(){ $(this).slideUp(50, function(){options.onClose();}); button.css(button_default); } /* Theme Loading ---------------------------------------------------------------------*/ switcherpane.find('a').click(function(){ updateCSS( $(this).attr('href') ); var themeName = $(this).find('span').text(); button.find('.jquery-ui-themeswitcher-title').text( options.buttonPreText + themeName ); if(options.useCookie) $.cookie(options.cookieName, themeName); options.onSelect(); if(options.closeOnSelect && switcherpane.is(':visible')){ switcherpane.spHide(); } return false; }); //function to rewrite stylesheet link. // if there is not onewith an id='ui-theme', append to <head> function updateCSS(locStr){ if($("head link#ui-theme").length==0) $("head").append($('<link href="" type="text/css" rel="Stylesheet" id="ui-theme" />')); $("head link#ui-theme").attr('href',locStr); } /* Inline CSS ---------------------------------------------------------------------*/ var button_default = { fontFamily: 'Trebuchet MS, Verdana, sans-serif', fontSize: '11px', color: '#666', background: '#eee url('+options.imageLocation+'buttonbg.png) 50% 50% repeat-x', border: '1px solid #ccc', '-moz-border-radius': '6px', '-webkit-border-radius': '6px', textDecoration: 'none', padding: '3px 3px 3px 8px', options.width - 11,//minus must match left and right padding display: 'block', height: options.buttonHeight, outline: '0' }; var button_hover = { 'borderColor':'#bbb', 'background': '#f0f0f0', cursor: 'pointer', color: '#444' }; var button_active = { color: '#aaa', background: '#000', border: '1px solid #ccc', borderBottom: 0, '-moz-border-radius-bottomleft': 0, '-webkit-border-bottom-left-radius': 0, '-moz-border-radius-bottomright': 0, '-webkit-border-bottom-right-radius': 0, outline: '0' }; //button css button.css(button_default) .hover( function(){ $(this).css(button_hover); }, function(){ if( !switcherpane.is(':animated') && switcherpane.is(':hidden') ){ $(this).css(button_default); } } ) .find('.jquery-ui-themeswitcher-icon').css({ float: 'right', '16px', height: '16px', background: 'url('+options.imageLocation+'icon_color_arrow.gif) 50% 50% no-repeat' }); //pane css switcherpane.css({ position: 'absolute', float: 'left', fontFamily: 'Trebuchet MS, Verdana, sans-serif', fontSize: '12px', background: '#000', color: '#fff', padding: '8px 3px 3px', border: '1px solid #ccc', '-moz-border-radius-bottomleft': '6px', '-webkit-border-bottom-left-radius': '6px', '-moz-border-radius-bottomright': '6px', '-webkit-border-bottom-right-radius': '6px', borderTop: 0, zIndex: 999999, options.width-6//minus must match left and right padding }) .find('ul').css({ listStyle: 'none', margin: '0', padding: '0', overflow: 'auto', height: options.height }).end() .find('li').hover( function(){ $(this).css({ 'borderColor':'#555', 'background': 'url('+image_loc+'menuhoverbg.png) 50% 50% repeat-x', cursor: 'pointer' }); }, function(){ $(this).css({ 'borderColor':'#111', 'background': '#000', cursor: 'auto' }); } ).css({ options.width-30, height: '', padding: '2px', margin: '1px', border: '1px solid #111', '-moz-border-radius': '4px', clear: 'left', textAlign:'center', float: 'left' }).end() .find('a').css({ color: '#aaa', textDecoration: 'none', // float: 'left', '100%', outline: '0', textAlign:'center' }).end() .find('img').css({ // float: 'left', border: '1px solid #333', margin: '0 2px' }).end() .find('.themeName').css({ float: 'left', margin: '3px 0', display:'block', "100%" }).end(); $(this).append(button); $('body').append(switcherpane); switcherpane.hide(); if( options.useCookie && ($.cookie(options.cookieName) || options.loadTheme) ){ var themeName = $.cookie(options.cookieName) || options.loadTheme; switcherpane.find('a:contains('+ themeName +')').trigger('click'); } return this; }; /** * Cookie plugin * * Copyright (c) 2006 Klaus Hartl (stilbuero.de) * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html * */ jQuery.cookie = function(name, value, options) { if (typeof value != 'undefined') { // name and value given, set cookie options = options || {}; if (value === null) {value = '';options.expires = -1;} var expires = ''; if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) { var date; if (typeof options.expires == 'number') date = (new Date()).setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000)); else date = options.expires; expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE } // CAUTION: Needed to parenthesize options.path and options.domain // in the following expressions, otherwise they evaluate to undefined // in the packed version for some reason... var path = options.path ? '; path=' + (options.path) : ''; var domain = options.domain ? '; domain=' + (options.domain) : ''; var secure = options.secure ? '; secure' : ''; document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join(''); } else { // only name given, get cookie var cookieValue = null; if (document.cookie && document.cookie != '') { var cookies = document.cookie.split(';'); for (var i = 0; i < cookies.length; i++) { var cookie = jQuery.trim(cookies[i]); // Does this cookie string begin with the name we want? if (cookie.substring(0, name.length + 1) == (name + '=')) { cookieValue = decodeURIComponent(cookie.substring(name.length + 1)); break; } } } return cookieValue; } };
2,http://jasonlau.biz/home/jquery/jlthemeswitcher-for-jquery
(TODO:)
3,最直接的方法,通过替换CSS的href,如下
var setTheme = function(themeName){ $("head").find("link[href$='style.css']").attr("href", themeName);} }
(占位,未完待续!!)