该站的所有修改项均在本文列出,实际效果看本站即可。若您也想拥有类似的效果,欢迎借鉴~~

注意:以下代码出现/* */<!-- -->// 字符均为注释,即不会有实际效果,仅仅是给人看的一个标记。
在这里不建议删除,因为会影响后期修改时的辨别。悉知~

为了给小白讲明白,这里记录的已经很细了。老博主的话,拿着代码按自己意愿改即可,懂得都懂~

这篇文章作为本站美化的记录,有新增时会实时更新。

如果您有好玩的效果也欢迎在评论区提出,若可以的话我也会加到文章并实现其效果。

更新时间:2023-09-10

本站环境:

Typecho:1.2.1正式版

HandSome 9.2.1 Pro 主题版本

其他版本的Typecho和HandSome不确定其可行性,请自行测试~

浏览器动态标题

浏览器动态标题

主题设置-开发者设置-自定义输出body尾部的HTML代码添加以下代码

<!--浏览器动态标题开始-->
<script>
 var OriginTitle = document.title;
 var titleTime;
 document.addEventListener('visibilitychange', function () {
     if (document.hidden) {
         $('[rel="icon"]').attr('href', "//file.kaygb.top/static_image/tx.png");
         document.title = 'ヽ(●-`Д´-)ノ我藏好了哦!';
         clearTimeout(titleTime);
     }
     else {
         $('[rel="icon"]').attr('href', "//file.kaygb.top/static_image/tx.png");
         document.title = 'ヾ(Ő∀Ő3)ノ被你发现啦~!' + OriginTitle;
         titleTime = setTimeout(function () {
             document.title = OriginTitle;
         }, 2000);
     }
 });
</script>
<!--浏览器动态标题结束-->

网站加载完成提示

网站加载完成提示

将下列代码添加进 开发者设置-自定义输出body尾部的HTML代码

/* 网站加载完成提示开始 */ 
function kaygb_referrer(){
var kaygb_referrer = document.referrer;
if  (kaygb_referrer != ""){
return "感谢您的访问! 您来自:<br>" + document.referrer;
}else{
return "";
}}
$.message({
    message: "为了网站的正常运行,请不要使用广告屏蔽插件,谢谢!<br >" + kaygb_referrer(),
    title: "网站加载完成",
    type: "success",
    autoHide: !1,
    time: "3000"
})
/* 网站加载完成提示结束 */

复制弹窗提示

复制弹窗提示

第一种:

在模板目录的header.php文件中引入layer资源文件代码

<script src="//lib.baomitu.com/layer/3.1.1/layer.js"></script>

主题设置-开发者设置-自定义javaScript中添加以下代码

document.body.oncopy = function() {layer.msg('复制成功,转载请保留原文链接!');};

第二种:

将下列代码添加进 开发者设置-自定义Javascript

/* 复制成功提示代码开始 */ 
    kaygb_copy();function kaygb_copy(){$(document).ready(function(){$("body").bind('copy',function(e){hellolayer()})});var sitesurl=window.location.href;function hellolayer(){
$.message({
    message: "尊重原创,转载请注明出处!<br> 本文作者:Dust<br>原文链接:"+sitesurl,
    title: "复制成功",
    type: "warning",
    autoHide: !1,
    time: "5000"
    })
}}
/* 复制成功提示代码结束 */

复制代码自带版权说明

复制代码自带版权说明

讲一下JS代码放在post.php的文章内页php

<!--复制代码自带版权说明-->
<script>
document.body.addEventListener('copy', function (e) {
    if (window.getSelection().toString() && window.getSelection().toString().length > 42) {
        setClipboardText(e);
        // alert('商业转载请联系作者获得授权,非商业转载请注明出处哦~\n谢谢合作~(。・`ω´・)');
    }
}); 
function setClipboardText(event) {
    var clipboardData = event.clipboardData || window.clipboardData;
    if (clipboardData) {
        event.preventDefault();
        var htmlData = ''
            + '著作权归作者所有。<br>'
            + '商业转载请联系作者获得授权,非商业转载请注明出处。<br>'
            + '作者:<?php $this->author() ?><br>'
            + '链接:' + window.location.href + '<br>'
            + '来源:<?php $this->options->siteUrl(); ?><br><br>'
            + window.getSelection().toString();
        var textData = ''
            + '著作权归作者所有。\n'
            + '商业转载请联系作者获得授权,非商业转载请注明出处。\n'
            + '作者:<?php $this->author() ?>\n'
            + '链接:' + window.location.href + '\n'
            + '来源:<?php $this->options->siteUrl(); ?>\n\n'
            + window.getSelection().toString();
 
        clipboardData.setData('text/html', htmlData);
        clipboardData.setData('text/plain',textData);
    }
}
</script>
<!--复制代码自带版权说明-->

网站加载耗时

网站加载耗时

在主题的functions.php文件中添加以下代码

//加载耗时
    function timer_start() {
        global $timestart;
        $mtime     = explode( ' ', microtime() );
        $timestart = $mtime[1] + $mtime[0];
        return true;
    }
    timer_start();
    function timer_stop( $display = 0, $precision = 3 ) {
        global $timestart, $timeend;
        $mtime     = explode( ' ', microtime() );
        $timeend   = $mtime[1] + $mtime[0];
        $timetotal = number_format( $timeend - $timestart, $precision );
        $r         = $timetotal < 1 ? $timetotal * 1000 . " ms" : $timetotal . " s";
        if ( $display ) {
            echo $r;
        }
        return $r;
    }

然后再/usr/themes/handsome/component/sidebar.php中添加以下代码

<li class="list-group-item"> <i class="glyphicon glyphicon-time text-muted"></i> <span class="badge
pull-right"><?php echo timer_stop();?></span><?php _me("加载耗时") ?></li>

请输入图片描述

博客介绍彩色特效

博客介绍彩色特效

后台-设置外观-初级设置-博客介绍添加以下代码

<span class="text-muted text-xs block"><div id="chakhsu"></div> <script> var chakhsu = function (r) {function t() {return b[Math.floor(Math.random() * b.length)]} function e() {return String.fromCharCode(94 * Math.random() + 33)} function n(r) {for (var n = document.createDocumentFragment(), i = 0; r > i; i++) { var l = document.createElement("span"); l.textContent = e(), l.style.color = t(), n.appendChild(l) } return n}function i() {var t = o[c.skillI]; c.step ? c.step-- : (c.step = g, c.prefixP < l.length ? (c.prefixP >= 0 && (c.text += l[c.prefixP]), c.prefixP++) : "forward" === c.direction ? c.skillP < t.length ? (c.text += t[c.skillP], c.skillP++) : c.delay ? c.delay-- : (c.direction = "backward", c.delay = a) : c.skillP > 0 ? (c.text = c.text.slice(0, -1), c.skillP--) : (c.skillI = (c.skillI + 1) % o.length, c.direction = "forward")), r.textContent = c.text, r.appendChild(n(c.prefixP < l.length ? Math.min(s, s + c.prefixP) : Math.min(s, t.length - c.skillP))), setTimeout(i, d) } /*以下内容自定义修改*/ var l = "❤", o = ["何须仰望别人,自己亦是风景" ].map(function (r) {return r + ""}), a = 2, g = 1, s = 5, d = 75, b = ["rgb(110,64,170)", "rgb(150,61,179)", "rgb(191,60,175)", "rgb(228,65,157)", "rgb(254,75,131)", "rgb(255,94,99)", "rgb(255,120,71)", "rgb(251,150,51)", "rgb(226,183,47)", "rgb(198,214,60)", "rgb(175,240,91)", "rgb(127,246,88)", "rgb(82,246,103)", "rgb(48,239,130)", "rgb(29,223,163)", "rgb(26,199,194)", "rgb(35,171,216)", "rgb(54,140,225)", "rgb(76,110,219)", "rgb(96,84,200)"], c = {text: "", prefixP: -s, skillI: 0, skillP: 0, direction: "forward", delay: a, step: g}; i() }; chakhsu(document.getElementById('chakhsu')); </script> </span> </span>

博客版权美化

博客版权美化

主题设置 - 开发者设置 - 博客底部右侧信息

<div class="github-badge">
<a rel="license" href="http://beian.miit.gov.cn/" target="_blank" title="渝ICP备XXXXXX号">
<span class="badge-subject">渝ICP备</span><span class="badge-value bg-black">XXXXXX号</span></a>
</div>
 |  <div class="github-badge">
<a rel="license" href="http://www.typecho.org" target="_blank" title="由Typecho强力驱动">
<span class="badge-subject">Powered</span><span class="badge-value bg-blue">Typecho</span></a>
</div>
 |  <div class="github-badge">
<a rel="license" href="https://www.ihewro.com/archives/489/" target="_blank" title="站点使用 handsome 主题,作者:友人C">
<span class="badge-subject">Theme</span><span class="badge-value bg-orange">Handsome</span></a>
</div>

滑稽表情

滑稽表情


解压后会得到一个OwO.json文件及funny文件夹;
然后将funny文件夹放置在/usr/themes/handsome/usr/img/emotion目录下即可;
然后用我们解压得到的OwO.json文件替换掉/usr/themes/handsome/usr目录下的OwO.json文件即可;

文章页添加百度收录查询

文章页添加百度收录查询

修改主题目录下post.php文件

<!--分类-->
             <li class="meta-categories"><i class="fontello fontello-tags" aria-hidden="true"></i><span class="sr-only">**<?php** _me(**"分类"**) **?>**:</span><span class="meta-value">**<?php** **$this**->category(**' '**); **?>**</span></li>
## 找到上面的代码,在其下方添加以下代码;
             <!--百度收录-->
             <li class="meta-baidu"><span class="post-icons"><i class="glyphicon glyphicon-refresh" id="baidu_icon"></i></span><span class="meta-value" id="baidu_result">加载中</span></li>

继续在最后<!-- footer -->标签上面添加以下代码;

<!-- 收录查询 -->
    <script>
    function baidu_check(){
        $.getJSON("https://cn1.api.wfblog.net/baidu.php?domain="+window.location.href,function(result){ 
            if (result.code == 200) {
                $('#baidu_icon').removeClass('glyphicon-refresh');
                $('#baidu_icon').addClass('glyphicon-ok-circle');
                $('#baidu_result').text('百度已收录');
            }else if(result.code == 403){
                $('#baidu_icon').removeClass('glyphicon-refresh');
                $('#baidu_icon').addClass('glyphicon-info-sign');
                $('#baidu_result').text('百度未收录');
                baidu_push();
            }else{
                 $('#baidu_icon').removeClass('glyphicon-refresh');
                $('#baidu_icon').addClass('glyphicon-remove-circle');
                $('#baidu_result').text('查询收录失败');
            }
        });
    }
    function baidu_push(){
        var bp = document.createElement('script');
        var curProtocol = window.location.protocol.split(':')[0];
        if (curProtocol === 'https') {
            bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';        
        } else {
            bp.src = 'http://push.zhanzhang.baidu.com/push.js';
        }
        var s = document.getElementsByTagName("script")[0];
        s.parentNode.insertBefore(bp, s);
    }
    baidu_check();
    </script>
    <!-- / 收录查询 -->

收录查询的API源码,作者公布了源码,可以使用自己的
API创建好后替换掉代码中的https://cn1.api.wfblog.net/baidu.php即可;
API源码

<?php
/**
 * Baidu
 * @editer: Weifeng
 * @link: https://wfblog.net
 * @version: 1.0
 */

error_reporting(0);
header("Access-Control-Allow-Origin:*");
header('Content-type: application/json');

$domain = @$_GET['domain'];
if(!isset($domain) || empty($domain) || $domain==''){
    $data = array(
        "code" => false,
        "msg" => "未传入请求参数!"
    );
    echo json_encode($data,JSON_UNESCAPED_UNICODE);
    exit;
}
if(substr($domain, -1) == '/'){
    $domain = substr($domain,0,strlen($domain)-1);
}

$data = checkBaidu($domain);
echo json_encode($data,JSON_UNESCAPED_UNICODE);

function checkBaidu($url){
    $header = array(
        "Host:www.baidu.com",
        "Content-Type:application/x-www-form-urlencoded",//post请求
        "Connection: keep-alive",
        "Referer:https://www.baidu.com",
        "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.162 Safari/537.36"
    );
    $url = 'https://www.baidu.com/s?ie=UTF-8&wd='.urlencode($url).'&usm=3&rsv_idx=2&rsv_page=1';
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt ($ch, CURLOPT_HTTPHEADER, $header);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION,1);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    $output = curl_exec($ch);
    curl_close($ch);
    if(strpos($output, '没有找到') || strpos($output, '很抱歉')){
        $data = array(
            "code" => 403,
            "msg" => "该域名暂时未被百度收录!"
        );
    }else{
        $number = GetBetween($output,'<span class="nums_text">百度为您找到相关结果约','个</span>');
        if(empty($number) || $number == 0){
            $number = GetBetween($output,'<b>找到相关结果数约','个</b></p>');
            if(empty($number) || $number == 0){
                $data = array(
                    "code" => false,
                    "msg" => "获取百度收录失败!"
                );
                return $data;
            }
        }
        $data = array(
            "code" => 200,
            "msg" => "该域名已被百度收录!",
            "number" => str_replace(',','',$number)
        );
    }
    return $data;
}

function GetBetween($content,$start,$end){
    $r = explode($start, $content);
    if (isset($r[1])){
        $r = explode($end, $r[1]);
        return $r[0];
    }
}
?>

原作者:https://wfblog.net

评论添加一键打卡

评论添加一键打卡

主题设置 - 开发者设置 - 自定义JavaScript 和 PJAX回调函数 均添加上以下代码

function a(a, b, c) {
        if (document.selection) a.focus(), sel = document.selection.createRange(), c ? sel.text = b + sel.text + c : sel.text = b, a.focus();
        elseif (a.selectionStart || "0" == a.selectionStart) {
            var l = a.selectionStart,
                m = a.selectionEnd,
                n = m;
            c ? a.value = a.value.substring(0, l) + b + a.value.substring(l, m) + c + a.value.substring(m, a.value.length) : a.value = a.value.substring(0, l) + b + a.value.substring(m, a.value.length);
            c ? n += b.length + c.length : n += b.length - m + l;
            l == m && c && (n -= c.length);
            a.focus();
            a.selectionStart = n;
            a.selectionEnd = n
        } else a.value += b + c, a.focus()
}
var b = (newDate).toLocaleTimeString(),
        c = document.getElementById("comment") || 0;
window.SIMPALED = {};
window.SIMPALED.Editor = {
    daka: function() {
        a(c, "滴!学生卡!打卡时间:" + b, ",请上车的乘客系好安全带~")
    },
    zan: function() {
        a(c, " 写得好好哟,我要给你生猴子!::funny:04:: ")
    },
    cai: function() {
        a(c, "骚年,我怀疑你写了一篇假的文章!::funny:03:: ")
    }
};

主题目录的component/comments.php里面的130行左右参照下面代码进行修改

<label for="comment"><?php _me("评论") ?>
                            <span class="required text-danger">*</span></label>
                        <textarea id="comment" class="textarea form-control OwO-textarea" name="text" rows="5" placeholder="<?php _me("说点什么吧……") ?>" onkeydown="if(event.ctrlKey&&event.keyCode==13){document.getElementById('submit').click();return false};"><?php $this->remember('text'); ?></textarea>
                        <div class="OwO" style="display: inline;"></div>
                                            <div class="OwO" title="打卡" style="display: inline;" onclick="javascript:SIMPALED.Editor.daka();this.style.display='none'"><div class="OwO-logo"><i class="fontello-pencil"></i><span class="OwOlogotext">打卡</span></div></div>
              <div class="OwO" title="赞" style="display: inline;" onclick="javascript:SIMPALED.Editor.zan();this.style.display='none'"><div class="OwO-logo"><i class="glyphicon glyphicon-thumbs-up"></i><span class="OwOlogotext"></span></div></div>
          <div class="OwO" title="踩" style="display: inline;" onclick="javascript:SIMPALED.Editor.cai();this.style.display='none'"><div class="OwO-logo"><i class="glyphicon glyphicon-thumbs-down"></i><span class="OwOlogotext"></span></div></div>
                        <div class="secret_comment" id="secret_comment" data-toggle="tooltip"
                        data-original-title="<?php _me("开启该功能,您的评论仅作者和评论双方可见") ?>">

主题设置 - 开发者设置 - 自定义CSS 添加以下代码

.secret_comment {
    top: 5px;
}
.OwO.OwO-open.OwO-body {
    display:table
}

访客总数统计

访客总数统计

/usr/themes/handsome/functions.php文件中添加以下统计代码

//总访问量
    function theAllViews()
        {
            $db = Typecho_Db::get();
            $row = $db->fetchAll('SELECT SUM(VIEWS) FROM `typecho_contents`');
                echo number_format($row[0]['SUM(VIEWS)']);
        }

/usr/themes/handsome/component/sidebar.php文件中插入以下调用代码

<li class="list-group-item"> <i class="glyphicon glyphicon-user text-muted"></i> <span class="badge
pull-right"><?php echo theAllViews();?></span><?php _me("访客总数") ?></li>

实际效果

其他主题单独调用代码

<?php echo theAllViews();?></span><?php _me("访客总数") ?>

404自动返回首页

404自动返回首页

/usr/themes/handsome/404.php文件130行左右添加以下代码
添加在<h1 class="text-shadow text-white">404</h1>这行下面即可

<br>
<small class="text-muted letterspacing">
<b id="sp">10</b>秒后自动返回···<br>
<a class="text-muted letterspacing" href="#" onclick="javascript:history.go(-1);">立刻返回</a>

再在最后面</body>标签前添加以下代码

<script type="text/javascript">
onload = function(){setInterval(go, 1000);};var x=10;
function go() {x--;if(x>0) {document.getElementById("sp").innerHTML = x;}else{history.go(-1);}}
</script>

实际效果

自定义音乐播放器音量

自定义音乐播放器音量

后台-设置外观-开发者设置-自定义JS 添加以下代码

setTimeout(function (){    document.querySelector(".skPlayer-source").volume=0.3;}, 3000);

其中volume=0.3为播放器音量控制,默认为0.3支持修改范围为0.0 - 1可自行设置

更换后台Gravatar国内镜像

更换后台Gravatar国内镜像

目前可用Gravatar国内镜像

  1. V2EX源:https://cdn.v2ex.com/gravatar/
  2. Loli源:https://gravatar.loli.net/avatar/
  3. 极客族:https://sdn.geekzu.org/avatar/
    网站根目录/var/Typecho打开Common.php
    找到名为gravatarUrlfunction大概在932行左右
    修改https://secure.gravatar.com为国内第三方镜像源地址
    修改/avatar/为镜像源的路径文件夹,修改完成后保存即可;

示例:

更换Gravatar默认头像

更换Gravatar默认头像

基于handsome主题修改,其它的主题也许路径不同;
打开网站根目录,编辑/usr/themes/handsome/libs/Utils.php文件;
找到名为getGravatorFunction修改$default代码的变量值,大概在86行左右;
$default = '';''中填入可用的变量值即可;
可用的变量值:

  1. mm 神秘人
  2. identicon 抽象图形(自动生成)
  3. wavatar Wavatar(自动生成)
  4. monsterid 小怪物(自动生成)
  5. retro 复古(自动生成)
    示例:

时光机使用DPlayer播放器

时光机使用DPlayer播放器

后台-设置-评论-允许使用的HTML标签和属性添加以下代码后保存

<div class="" data-config=''/>

Dplayer使用方法

<div class="dplayer" data-config='{"video":{"url":"视频地址","pic":"图片封面地址"}}'/>

注意:请勿在评论设置中开启Markdown语法否则无法解析;

文章中嵌入网页

文章中嵌入网页

在文章中添加代码即可,将链接地址修改为你需要展示的网站地址;

<iframe align="center" width="100%" height="740px" src="链接地址"  frameborder="no" border="0"  scrolling="no" marginwidth="0" marginheight="0" ></iframe>

回复可见提示内容修改

回复可见提示内容修改

编辑/usr/themes/handsome/libs/Content.php文件
1700行左右,自行修改提示内容即可;

JS代码防止网站别别人恶意镜像

JS代码防止网站别别人恶意镜像

网站被恶意镜像,导致搜索引擎降权怎么办?
在自定义JavaScript处加入这段代码就可以了。
这样的话别人访问被镜像的网站会自动跳转到官方网站

var xxhzmurl = window.location.href;
            if (xxhzmurl.indexOf("站点域名例如blog.dwoyun.com") > 0) {//此处采用搜索,防止误判定
    
            } else {
               alert('警告!检测到该网站为恶意镜像站点,将立即为您跳转到官方站点!');
                window.location.href = '<a href="<a href="<a href="<a href="https://blog.dwoyun.com/';//这里填入要跳转的地址"""" title="https://blog.dwoyun.com/';//这里填入要跳转的地址"""">https://blog.dwoyun.com/';//这里填入要跳转的地址"""</a> title="<a href="https://blog.dwoyun.com/';//这里填入要跳转的地址""">https://blog.dwoyun.com/';//这里填入要跳转的地址""" title="https://blog.dwoyun.com/';//这里填入要跳转的地址""">https://blog.dwoyun.com/';//这里填入要跳转的地址""">https://blog.dwoyun.com/';//这里填入要跳转的地址""">https://blog.dwoyun.com/';//这里填入要跳转的地址""</a></a> title="<a href="<a href="https://blog.dwoyun.com/';//这里填入要跳转的地址"">https://blog.dwoyun.com/';//这里填入要跳转的地址""" title="https://blog.dwoyun.com/';//这里填入要跳转的地址"">https://blog.dwoyun.com/';//这里填入要跳转的地址""">https://blog.dwoyun.com/';//这里填入要跳转的地址"">https://blog.dwoyun.com/';//这里填入要跳转的地址""</a> title="<a href="https://blog.dwoyun.com/';//这里填入要跳转的地址"">https://blog.dwoyun.com/';//这里填入要跳转的地址"">https://blog.dwoyun.com/';//这里填入要跳转的地址"">https://blog.dwoyun.com/';//这里填入要跳转的地址"" title="https://blog.dwoyun.com/';//这里填入要跳转的地址"">https://blog.dwoyun.com/';//这里填入要跳转的地址"">https://blog.dwoyun.com/';//这里填入要跳转的地址"">https://blog.dwoyun.com/';//这里填入要跳转的地址"">https://blog.dwoyun.com/';//这里填入要跳转的地址"">https://blog.dwoyun.com/';//这里填入要跳转的地址"">https://blog.dwoyun.com/';//这里填入要跳转的地址"">https://blog.dwoyun.com/';//这里填入要跳转的地址"</a></a></a> title="<a href="<a href="<a href="https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址""" title="https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址""">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址""</a> title="<a href="https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址"">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址"" title="https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址"">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址"">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址"">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址"</a></a> title="<a href="<a href="https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址"" title="https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址"">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址"</a> title="<a href="https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址" title="https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址">https://blog.dwoyun.com/';//这里填入要跳转的地址</a></a></a></a>
            }

打赏图片

打赏图片

<style>
.support-author{background-repeat:round;background-image:url(https://blog.dwoyun.com/file/MenheraSauce.png);}.article__reward-info{color:#00a0ed!important;font-weight:bold;}</style>

打赏跳动

打赏跳动

<style>
.btn-pay{animation:star 0.5s ease-in-out infinite alternate;}@keyframes star{from{transform:scale(1);}to{transform:scale(1.1);}}</style>

最后修改:2023 年 09 月 27 日
如果觉得我的文章对你有用,请随意赞赏,但也要理性!