354 lines
18 KiB
PHP
354 lines
18 KiB
PHP
![]() |
/**
|
||
|
* AdminLTE Demo Menu
|
||
|
* ------------------
|
||
|
* You should not use this file in production.
|
||
|
* This file is for demo purposes only.
|
||
|
*/
|
||
|
$(function () {
|
||
|
'use strict';
|
||
|
|
||
|
/**
|
||
|
* Get access to plugins
|
||
|
*/
|
||
|
|
||
|
let $JControlSidebar = $('[data-toggle="control-sidebar"]');
|
||
|
|
||
|
let $JPushMenu = $('[data-toggle="push-menu"]');
|
||
|
$JControlSidebar.controlSidebar();
|
||
|
$JPushMenu.pushMenu();
|
||
|
var $pushMenu = $JPushMenu.data('lte.pushmenu');
|
||
|
var $controlSidebar = $JControlSidebar.data('lte.controlsidebar');
|
||
|
var $layout = $('body').data('lte.layout');
|
||
|
$(window).on('load', function () {
|
||
|
// Reinitialize variables on load
|
||
|
$pushMenu = $('[data-toggle="push-menu"]').data('lte.pushmenu');
|
||
|
$controlSidebar = $('[data-toggle="control-sidebar"]').data('lte.controlsidebar');
|
||
|
$layout = $('body').data('lte.layout')
|
||
|
});
|
||
|
|
||
|
/**
|
||
|
* List of all the available skins
|
||
|
*
|
||
|
* @type Array
|
||
|
*/
|
||
|
var mySkins = [
|
||
|
'skin-blue',
|
||
|
'skin-black',
|
||
|
'skin-red',
|
||
|
'skin-yellow',
|
||
|
'skin-purple',
|
||
|
'skin-green',
|
||
|
'skin-blue-light',
|
||
|
'skin-black-light',
|
||
|
'skin-red-light',
|
||
|
'skin-yellow-light',
|
||
|
'skin-purple-light',
|
||
|
'skin-green-light'
|
||
|
];
|
||
|
|
||
|
/**
|
||
|
* Get a prestored setting
|
||
|
*
|
||
|
* @returns String The value of the setting | null
|
||
|
* @param name
|
||
|
*/
|
||
|
function get(name) {
|
||
|
if (typeof (Storage) !== 'undefined') {
|
||
|
return localStorage.getItem(name)
|
||
|
} else {
|
||
|
window.alert('请使用现代浏览器(谷歌浏览器或360,QQ,搜狗等极速模式)访问本后台!')
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Store a new settings in the browser
|
||
|
*
|
||
|
* @returns void
|
||
|
* @param name
|
||
|
* @param val
|
||
|
*/
|
||
|
function store(name, val) {
|
||
|
if (typeof (Storage) !== 'undefined') {
|
||
|
localStorage.setItem(name, val)
|
||
|
} else {
|
||
|
window.alert('请使用现代浏览器(谷歌浏览器或360,QQ,搜狗等极速模式)访问本后台!')
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Toggles layout classes
|
||
|
*
|
||
|
* @returns void
|
||
|
* @param cls
|
||
|
*/
|
||
|
function changeLayout(cls) {
|
||
|
let $body = $('body');
|
||
|
$body.toggleClass(cls);
|
||
|
$layout.fixSidebar();
|
||
|
if ($body.hasClass('fixed') && cls === 'fixed') {
|
||
|
$pushMenu.expandOnHover();
|
||
|
$layout.activate()
|
||
|
}
|
||
|
$controlSidebar.fix()
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Replaces the old skin with the new skin
|
||
|
* @returns Boolean false to prevent link's default action
|
||
|
* @param cls
|
||
|
*/
|
||
|
function changeSkin(cls) {
|
||
|
$.each(mySkins, function (i) {
|
||
|
$('body').removeClass(mySkins[i])
|
||
|
});
|
||
|
|
||
|
$('body').addClass(cls);
|
||
|
store('skin', cls);
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Retrieve default settings and apply them to the template
|
||
|
*
|
||
|
* @returns void
|
||
|
*/
|
||
|
function setup() {
|
||
|
let $body = $('body');
|
||
|
var tmp = get('skin');
|
||
|
if (tmp && $.inArray(tmp, mySkins))
|
||
|
changeSkin(tmp);
|
||
|
|
||
|
// Add the change skin listener
|
||
|
$('[data-skin]').on('click', function (e) {
|
||
|
if ($(this).hasClass('knob'))
|
||
|
return;
|
||
|
e.preventDefault();
|
||
|
changeSkin($(this).data('skin'))
|
||
|
});
|
||
|
|
||
|
// Add the layout manager
|
||
|
$('[data-layout]').on('click', function () {
|
||
|
changeLayout($(this).data('layout'))
|
||
|
});
|
||
|
|
||
|
$('[data-controlsidebar]').on('click', function () {
|
||
|
changeLayout($(this).data('controlsidebar'));
|
||
|
var slide = !$controlSidebar.options.slide;
|
||
|
|
||
|
$controlSidebar.options.slide = slide;
|
||
|
if (!slide)
|
||
|
$('.control-sidebar').removeClass('control-sidebar-open')
|
||
|
});
|
||
|
|
||
|
$('[data-sidebarskin="toggle"]').on('click', function () {
|
||
|
var $sidebar = $('.control-sidebar');
|
||
|
if ($sidebar.hasClass('control-sidebar-dark')) {
|
||
|
$sidebar.removeClass('control-sidebar-dark');
|
||
|
$sidebar.addClass('control-sidebar-light')
|
||
|
} else {
|
||
|
$sidebar.removeClass('control-sidebar-light');
|
||
|
$sidebar.addClass('control-sidebar-dark')
|
||
|
}
|
||
|
});
|
||
|
|
||
|
$('[data-enable="expandOnHover"]').on('click', function () {
|
||
|
$(this).attr('disabled', true);
|
||
|
$pushMenu.expandOnHover();
|
||
|
if (!$('body').hasClass('sidebar-collapse'))
|
||
|
$('[data-layout="sidebar-collapse"]').click()
|
||
|
});
|
||
|
|
||
|
// Reset options
|
||
|
if ($body.hasClass('fixed')) {
|
||
|
$('[data-layout="fixed"]').attr('checked', 'checked')
|
||
|
}
|
||
|
if ($body.hasClass('layout-boxed')) {
|
||
|
$('[data-layout="layout-boxed"]').attr('checked', 'checked')
|
||
|
}
|
||
|
if ($body.hasClass('sidebar-collapse')) {
|
||
|
$('[data-layout="sidebar-collapse"]').attr('checked', 'checked')
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
// Create the new tab
|
||
|
var $tabPane = $('<div />', {
|
||
|
'id': 'control-sidebar-theme-demo-options-tab',
|
||
|
'class': 'tab-pane active'
|
||
|
});
|
||
|
|
||
|
// Create the tab button
|
||
|
var $tabButton = $('<li />', {'class': 'active'})
|
||
|
.html('<a href=\'#control-sidebar-theme-demo-options-tab\' data-toggle=\'tab\'>'
|
||
|
+ '<i class="fa fa-wrench"></i>'
|
||
|
+ '</a>');
|
||
|
|
||
|
// Add the tab button to the right sidebar tabs
|
||
|
$('[href="#control-sidebar-home-tab"]')
|
||
|
.parent()
|
||
|
.before($tabButton);
|
||
|
|
||
|
// Create the menu
|
||
|
var $demoSettings = $('<div />');
|
||
|
|
||
|
// Layout options
|
||
|
$demoSettings.append(
|
||
|
'<h4 class="control-sidebar-heading">'
|
||
|
+ '布局选项'
|
||
|
+ '</h4>'
|
||
|
// Fixed layout
|
||
|
+ '<div class="form-group">'
|
||
|
+ '<label class="control-sidebar-subheading">'
|
||
|
+ '<input type="checkbox" data-layout="fixed" class="pull-right"/> '
|
||
|
+ '固定布局'
|
||
|
+ '</label>'
|
||
|
+ '</div>'
|
||
|
// Boxed layout
|
||
|
+ '<div class="form-group">'
|
||
|
+ '<label class="control-sidebar-subheading">'
|
||
|
+ '<input type="checkbox" data-layout="layout-boxed" class="pull-right"/> '
|
||
|
+ '盒装布局'
|
||
|
+ '</label>'
|
||
|
+ '</div>'
|
||
|
// Sidebar Toggle
|
||
|
+ '<div class="form-group">'
|
||
|
+ '<label class="control-sidebar-subheading">'
|
||
|
+ '<input type="checkbox" data-layout="sidebar-collapse" class="pull-right"/> '
|
||
|
+ '切换侧边栏'
|
||
|
+ '</label>'
|
||
|
+ '</div>'
|
||
|
// Sidebar mini expand on hover toggle
|
||
|
+ '<div class="form-group">'
|
||
|
+ '<label class="control-sidebar-subheading">'
|
||
|
+ '<input type="checkbox" data-enable="expandOnHover" class="pull-right"/> '
|
||
|
+ '悬停时边栏展开'
|
||
|
+ '</label>'
|
||
|
+ '</div>'
|
||
|
// Control Sidebar Toggle
|
||
|
+ '<div class="form-group">'
|
||
|
+ '<label class="control-sidebar-subheading">'
|
||
|
+ '<input type="checkbox" data-controlsidebar="control-sidebar-open" class="pull-right"/> '
|
||
|
+ '切换右侧边栏滑动'
|
||
|
+ '</label>'
|
||
|
+ '</div>'
|
||
|
// Control Sidebar Skin Toggle
|
||
|
+ '<div class="form-group">'
|
||
|
+ '<label class="control-sidebar-subheading">'
|
||
|
+ '<input type="checkbox" data-sidebarskin="toggle" class="pull-right"/> '
|
||
|
+ '切换右侧边栏皮肤'
|
||
|
+ '</label>'
|
||
|
+ '</div>'
|
||
|
);
|
||
|
var $skinsList = $('<ul />', {'class': 'list-unstyled clearfix'});
|
||
|
|
||
|
// Dark sidebar skins
|
||
|
var $skinBlue =
|
||
|
$('<li />', {style: 'float:left; width: 33.33333%; padding: 5px;'})
|
||
|
.append('<a href="javascript:void(0)" data-skin="skin-blue" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
||
|
+ '<div><span style="display:block; width: 20%; float: left; height: 7px; background: #367fa9"></span><span class="bg-light-blue" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
|
||
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #222d32"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
|
||
|
+ '</a>'
|
||
|
+ '<p class="text-center no-margin">蓝 黑</p>');
|
||
|
$skinsList.append($skinBlue);
|
||
|
var $skinBlack =
|
||
|
$('<li />', {style: 'float:left; width: 33.33333%; padding: 5px;'})
|
||
|
.append('<a href="javascript:void(0)" data-skin="skin-black" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
||
|
+ '<div style="box-shadow: 0 0 2px rgba(0,0,0,0.1)" class="clearfix"><span style="display:block; width: 20%; float: left; height: 7px; background: #fefefe"></span><span style="display:block; width: 80%; float: left; height: 7px; background: #fefefe"></span></div>'
|
||
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #222"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
|
||
|
+ '</a>'
|
||
|
+ '<p class="text-center no-margin">白 黑</p>');
|
||
|
$skinsList.append($skinBlack);
|
||
|
var $skinPurple =
|
||
|
$('<li />', {style: 'float:left; width: 33.33333%; padding: 5px;'})
|
||
|
.append('<a href="javascript:void(0)" data-skin="skin-purple" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
||
|
+ '<div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-purple-active"></span><span class="bg-purple" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
|
||
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #222d32"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
|
||
|
+ '</a>'
|
||
|
+ '<p class="text-center no-margin">紫 黑</p>');
|
||
|
$skinsList.append($skinPurple);
|
||
|
var $skinGreen =
|
||
|
$('<li />', {style: 'float:left; width: 33.33333%; padding: 5px;'})
|
||
|
.append('<a href="javascript:void(0)" data-skin="skin-green" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
||
|
+ '<div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-green-active"></span><span class="bg-green" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
|
||
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #222d32"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
|
||
|
+ '</a>'
|
||
|
+ '<p class="text-center no-margin">绿 黑</p>');
|
||
|
$skinsList.append($skinGreen);
|
||
|
var $skinRed =
|
||
|
$('<li />', {style: 'float:left; width: 33.33333%; padding: 5px;'})
|
||
|
.append('<a href="javascript:void(0)" data-skin="skin-red" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
||
|
+ '<div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-red-active"></span><span class="bg-red" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
|
||
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #222d32"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
|
||
|
+ '</a>'
|
||
|
+ '<p class="text-center no-margin">红 黑</p>');
|
||
|
$skinsList.append($skinRed);
|
||
|
var $skinYellow =
|
||
|
$('<li />', {style: 'float:left; width: 33.33333%; padding: 5px;'})
|
||
|
.append('<a href="javascript:void(0)" data-skin="skin-yellow" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
||
|
+ '<div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-yellow-active"></span><span class="bg-yellow" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
|
||
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #222d32"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
|
||
|
+ '</a>'
|
||
|
+ '<p class="text-center no-margin">黄 黑</p>');
|
||
|
$skinsList.append($skinYellow);
|
||
|
|
||
|
// Light sidebar skins
|
||
|
var $skinBlueLight =
|
||
|
$('<li />', {style: 'float:left; width: 33.33333%; padding: 5px;'})
|
||
|
.append('<a href="javascript:void(0)" data-skin="skin-blue-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
||
|
+ '<div><span style="display:block; width: 20%; float: left; height: 7px; background: #367fa9"></span><span class="bg-light-blue" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
|
||
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
|
||
|
+ '</a>'
|
||
|
+ '<p class="text-center no-margin" style="font-size: 12px">蓝 白</p>');
|
||
|
$skinsList.append($skinBlueLight);
|
||
|
var $skinBlackLight =
|
||
|
$('<li />', {style: 'float:left; width: 33.33333%; padding: 5px;'})
|
||
|
.append('<a href="javascript:void(0)" data-skin="skin-black-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
||
|
+ '<div style="box-shadow: 0 0 2px rgba(0,0,0,0.1)" class="clearfix"><span style="display:block; width: 20%; float: left; height: 7px; background: #fefefe"></span><span style="display:block; width: 80%; float: left; height: 7px; background: #fefefe"></span></div>'
|
||
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
|
||
|
+ '</a>'
|
||
|
+ '<p class="text-center no-margin" style="font-size: 12px">黑 白</p>');
|
||
|
$skinsList.append($skinBlackLight);
|
||
|
var $skinPurpleLight =
|
||
|
$('<li />', {style: 'float:left; width: 33.33333%; padding: 5px;'})
|
||
|
.append('<a href="javascript:void(0)" data-skin="skin-purple-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
||
|
+ '<div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-purple-active"></span><span class="bg-purple" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
|
||
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
|
||
|
+ '</a>'
|
||
|
+ '<p class="text-center no-margin" style="font-size: 12px">紫 白</p>');
|
||
|
$skinsList.append($skinPurpleLight);
|
||
|
var $skinGreenLight =
|
||
|
$('<li />', {style: 'float:left; width: 33.33333%; padding: 5px;'})
|
||
|
.append('<a href="javascript:void(0)" data-skin="skin-green-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
||
|
+ '<div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-green-active"></span><span class="bg-green" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
|
||
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
|
||
|
+ '</a>'
|
||
|
+ '<p class="text-center no-margin" style="font-size: 12px">纯 白</p>');
|
||
|
$skinsList.append($skinGreenLight);
|
||
|
var $skinRedLight =
|
||
|
$('<li />', {style: 'float:left; width: 33.33333%; padding: 5px;'})
|
||
|
.append('<a href="javascript:void(0)" data-skin="skin-red-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
||
|
+ '<div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-red-active"></span><span class="bg-red" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
|
||
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
|
||
|
+ '</a>'
|
||
|
+ '<p class="text-center no-margin" style="font-size: 12px">红 白</p>');
|
||
|
$skinsList.append($skinRedLight);
|
||
|
var $skinYellowLight =
|
||
|
$('<li />', {style: 'float:left; width: 33.33333%; padding: 5px;'})
|
||
|
.append('<a href="javascript:void(0)" data-skin="skin-yellow-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
||
|
+ '<div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-yellow-active"></span><span class="bg-yellow" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
|
||
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
|
||
|
+ '</a>'
|
||
|
+ '<p class="text-center no-margin" style="font-size: 12px">黄 白</p>');
|
||
|
$skinsList.append($skinYellowLight);
|
||
|
|
||
|
$demoSettings.append('<h4 class="control-sidebar-heading">皮肤</h4>');
|
||
|
$demoSettings.append($skinsList);
|
||
|
|
||
|
$tabPane.append($demoSettings);
|
||
|
$('#control-sidebar-home-tab').after($tabPane);
|
||
|
|
||
|
setup();
|
||
|
|
||
|
$('[data-toggle="tooltip"]').tooltip()
|
||
|
});
|