模板简介
模板使用简要说明
主题配色及保存
顶部导航对应侧边栏菜单切换
侧边栏菜单的JS初始化
点击侧边栏刷新
iframe版本右侧内容区域404问题
关于非iframe版本菜单高亮
iframe版本子页面内新建TAB
iframe中操作当前Tabs
iframe页面内的loading
多标签页(Multitabs)插件说明
关于multitabs的一些调整
调整左侧的宽度
webuploader使用时候的问题
关于模板的默认主题或者配色
关于模板的字体图标问题
关于版权和商业用途
模板中固有的插件
光年模板的loading和消息(v3)
rangeSlider滑块(v3)
bootstrap-datepicker日期(v3)
bootstrap-datepicker日期(v4)
bootstrap-datetimepicker日期时间(v3)
bootstrap-datetimepicker日期时间(v4)
perfect-scrollbar滚动条
Chart.js图表
bootstrap-colorpicker颜色选择
jquery-confirm对话框
jquery.tagsinput标签
bootstrap-notify消息(v4)
chosen.jquery关联选择
jquery.bootstrap.wizard向导
clockpicker时间选择(v4)
bootstrap-maxlength长度验证(v4)
bootstrap-select下拉选择(v4)
fullcalendar日程(v4)
bootstrap-table表格插件
插件项目包含插件
Date Range Picker时间段选择
material风格时间选择器
dropzone上传
uploadify上传
webuploader上传
H5图片上传
cropper图片裁剪
ckeditor富文本编辑器
editor.md编辑器
summernote富文本编辑器
tinymce富文本编辑器
ueditor富文本编辑器
wangeditor富文本编辑器
bootstrap-validate表单验证
jquery-validate表单验证
bootstrap-select下拉选择
bootstrap-selectN联动
bootstrap-lyear-select下拉
select2下拉
bootstrap-multiselect下拉多选
lyear-dropdowntree下拉树状
ZTree树形菜单
treeview树状插件
jstree树状结构
imgVer拼图滑块
sliderVerification滑块验证
bootstrap3-dialog模态框
layer弹窗
jquery.auto.complete自动填充
fixedheadertable固定表头
fontIconPicker图标选择
fullcalendar日程
jQuery Raty评分
lyear.loading加载
Bootstrap MaxLength长度验证
jquery.toolbar弹出式工具栏
jquery.bootstrap-touchspin输入框微调
插件项目包含示例
表单布局示例
聊天页面示例
logo处使用文字
模态框中使用Tab选项卡
模态框最大化
顶部消息示例
搜索布局
搜索布局2
搜索布局3
侧滑边栏区域
选择示例
选择示例2
选择示例3
代码演示切换
留言列表布局
数据统计布局
产品价格布局
搜索框
用户头像篇
动画篇
其他篇
另一种侧边栏菜单
主题配色及保存 - 光年模板说明文档 - 笔下光年
网站首页
主题配色及保存
顶部导航,logo和侧边栏菜单三个位置都可以调整背景颜色,其中普通版本还可以切换成半透明和暗黑两种整体的配色。 v3的两个项目中,只是采用js设置当前选中的配置,并没有做保存,v4的版本已经做了cookie存储,这里针对的v3的两个项目,你也可以直接参考v4项目中的写法。 设置的js在`main.min.js`中 line 137 - line 146,iframe版本在`index.min.js`的 line 72 - line 80。如下: ```javascript // 设置主题配色 setTheme = function(input_name, data_name) { $("input[name='"+input_name+"']").click(function(){ $('body').attr(data_name, $(this).val()); }); } setTheme('site_theme', 'data-theme'); setTheme('logo_bg', 'data-logobg'); setTheme('header_bg', 'data-headerbg'); setTheme('sidebar_bg', 'data-sidebarbg'); /* ---- iframe版本 ---- */ // 设置主题配色 setTheme = function(input_name, data_name) { $("input[name='"+input_name+"']").click(function(){ $('body').attr(data_name, $(this).val()); }); } setTheme('logo_bg', 'data-logobg'); setTheme('header_bg', 'data-headerbg'); setTheme('sidebar_bg', 'data-sidebarbg'); ``` 主题配置并没有做保存,大家根据自己实际情况,做cookie存储或者其他方式。这里说下采用cookie存储,先引入 `jquery.cookie.min.js`,[下载该js文件](https://cdn.bootcss.com/jquery-cookie/1.4.1/jquery.cookie.min.js "下载js文件")。 在项目页面中引入: ```html <script type="text/javascript" src="js/jquery.cookie.min.js"></script> ``` 对设置主题配置的js做些修改。 ```javascript // 读取cookie中的主题设置 var the_logo_bg = $.cookie('the_logo_bg'), the_header_bg = $.cookie('the_header_bg'), the_sidebar_bg = $.cookie('the_sidebar_bg'), the_site_theme = $.cookie('the_site_theme'); // iframe版中不需要这个 if (the_logo_bg) $('body').attr('data-logobg', the_logo_bg); if (the_header_bg) $('body').attr('data-headerbg', the_header_bg); if (the_sidebar_bg) $('body').attr('data-sidebarbg', the_sidebar_bg); if (the_site_theme) $('body').attr('data-theme', the_site_theme); // iframe版中不需要这个 // 处理主题配色下拉选中 $(".dropdown-skin :radio").each(function(){ var $this = $(this), radioName = $this.attr('name'); switch (radioName) { case 'site_theme': $this.val() == the_site_theme && $this.prop("checked", true); break; // iframe版中不需要这个case case 'logo_bg': $this.val() == the_logo_bg && $this.prop("checked", true); break; case 'header_bg': $this.val() == the_header_bg && $this.prop("checked", true); break; case 'sidebar_bg': $this.val() == the_sidebar_bg && $this.prop("checked", true); } }); // 设置主题配色 setTheme = function(input_name, data_name) { $("input[name='"+input_name+"']").click(function(){ $('body').attr(data_name, $(this).val()); $.cookie('the_'+input_name, $(this).val()); }); } setTheme('site_theme', 'data-theme'); // iframe版中不需要这个 setTheme('logo_bg', 'data-logobg'); setTheme('header_bg', 'data-headerbg'); setTheme('sidebar_bg', 'data-sidebarbg'); ``` 以上就是用js处理主题配色保存的方法,你也可以只用js存储,用程序来读取cookie中存储的内容。
上一篇:
模板使用简要说明
下一篇:
顶部导航对应侧边栏菜单切换