📄 styleswitcher.php
字号:
<?phpdefined( '_JEXEC' ) or die( 'Restricted index access' );$cookie_prefix = "ts-";$cookie_time = time()+31536000;if (isset($_GET['scheme'])) { $scheme = $_GET['scheme']; $_SESSION[$cookie_prefix. 'scheme'] = $scheme; setcookie ($cookie_prefix. 'scheme', $scheme, $cookie_time, '/', false);}if (isset($_GET['font'])) { $font = $_GET['font']; $_SESSION[$cookie_prefix. 'font'] = $font; setcookie ($cookie_prefix. 'font', $font, $cookie_time, '/', false);}if (isset($_GET['width'])) { $width = $_GET['width']; $_SESSION[$cookie_prefix. 'width'] = $width; setcookie ($cookie_prefix. 'width', $width, $cookie_time, '/', false);}?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -