这是一套非常优秀的纯静态后端管理模板————LightYearAdmin( 二 )

增加主题切换,增加了很多css,如果你不需要有主题切换功能,可将多余的内容删除掉。

这是一套非常优秀的纯静态后端管理模板————LightYearAdmin

HTML页面中删除掉js中删除 line 137 - line 146css中删除 line 2937 - line 3946主题切换并没有存到cookie中,大家根据自己实际情况,做cookie存储或者其他方式。

jquery-cookie保存设置示例 // 读取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');

console.log(the_logo_bg);

if (the_logo_bg) $('body').attr('data-logobg', the_logo_bg);

推荐阅读