Typecho实现特殊日期全站置灰

屏幕截图 2023-10-18 230221.png

1.修改functions.php,文件路径:usr/themes/Joe-master 示例

2906851223.png

代码

代码语言:javascript
复制
// 全站置灰
$websiteChgGray = new Typecho_Widget_Helper_Form_Element_Select(
    'websiteChgGray',
    array(
        'off' => '关闭(默认)',
        'on' => '开启',
    ),
    'on',
    '是否启用全站置灰',
    '介绍:开启后,网站所有信息全部变成黑白'
);
$websiteChgGray->setAttribute('class', 'joe_content joe_custom'); // 如果无法显示设置,将joe_custom修改为joe_other
$form->addInput($websiteChgGray->multiMode());

2.修改include.php文件,底部增加,文件路径:usr/themes/Joe-master/public

示例

1741960722.png

代码

代码语言:text
复制
<?php if ($this->options->websiteChgGray === 'on') : ?>
    <style>html { filter: grayscale(1); }</style>
<?php endif; ?>