1 Star 2 Fork 2

MelodyJerry/blog

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.html 54.82 KB
一键复制 编辑 原始数据 按行查看 历史
MelodyJerry 提交于 2020-09-19 22:43 +08:00 . Site updated: 2020-09-19 22:43:08
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- JQuery 2.2.4 -->
<script src="https://lib.baomitu.com/jquery/2.2.4/jquery.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9" />
<title>Github提速 | MelodyHub</title>
<link rel="alternate" href="/blog/atom.xml" title="MelodyHub">
<meta name="HandheldFriendly" content="True" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- meta -->
<meta name='theme-color' content='#FFFFFF'>
<meta name='msapplication-TileColor' content='#1BC3FB'>
<meta name='msapplication-config' content='https://cdn.jsdelivr.net/gh/xaoxuu/assets@master/favicon/favicons/browserconfig.xml'>
<!-- link -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/node-waves@0.7.6/dist/waves.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.10.1/css/all.min.css">
<link rel='shortcut icon' type='image/x-icon' href='https://cdn.jsdelivr.net/gh/xaoxuu/assets@master/favicon/favicon.ico'>
<link rel='icon' type='image/x-icon' sizes='32x32' href='https://cdn.jsdelivr.net/gh/xaoxuu/assets@master/favicon/favicons/favicon-32x32.png'>
<link rel='apple-touch-icon' type='image/png' sizes='180x180' href='https://cdn.jsdelivr.net/gh/xaoxuu/assets@master/favicon/favicons/apple-touch-icon.png'>
<link rel='mask-icon' color='#1BC3FB' href='https://cdn.jsdelivr.net/gh/xaoxuu/assets@master/favicon/favicons/safari-pinned-tab.svg'>
<link rel='manifest' href='https://cdn.jsdelivr.net/gh/xaoxuu/assets@master/favicon/favicons/site.webmanifest'>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/melodyjerry/cdn-material-x@20.2.9/css/style.css">
<script>
function setLoadingBarProgress(num) {
document.getElementById('loading-bar').style.width=num+"%";
}
</script>
<meta name="generator" content="Hexo 4.2.0"><link rel="alternate" href="/blog/atom.xml" title="MelodyHub" type="application/atom+xml">
</head>
<body>
<div class="cover-wrapper">
<cover class='cover post half'>
<h1 class='title'>MelodyHub</h1>
<!--MelodyHub和搜索框之间-->
<!-- 打字特效(蓝色)-->
<script src="https://cdn.jsdelivr.net/npm/typed.js@2.0.11"></script>
<script>var typed = new Typed("#subtitle", { strings: ["Live a good life, write some good code !!!", "愿自己的努力终将获得回报。", "花开不是为了花落,而是为了开的更加灿烂。", "没有伞的孩子必须努力奔跑!", "欲望以提升热忱,毅力以磨平高山。", "如果放弃太早,你永远都不知道自己会错过什么。", "没有礁石,就没有美丽的浪花;没有挫折,就没有壮丽的人生。"], startDelay: 1000, typeSpeed: 100, loop: !0, backSpeed: 60, backDelay: 2000, showCursor: !0 })</script>
<div style="text-align: center;font-weight: bold;color: #1BC3FB;">
<span id="subtitle">没有伞的孩子必须努力奔跑!</span><span class="typed-cursor typed-cursor--blink">|</span>
<span id="typed-cursor"></span>
</div>
<div class="m_search">
<form name="searchform" class="form u-search-form">
<input type="text" class="input u-search-input" placeholder="" />
<i class="icon fas fa-search fa-fw"></i>
</form>
</div>
<div class='menu navgation'>
<ul class='h-list'>
<li>
<a class="nav home" href="/blog/"
id="blog">
<i class='fas fa-rss fa-fw'></i>&nbsp;博文
</a>
</li>
<li>
<a class="nav home" href="/blog/projects/"
id="blogprojects">
<i class='fas fa-code-branch fa-fw'></i>&nbsp;成果展
</a>
</li>
<li>
<a class="nav home" href="/blog/friends/"
rel="nofollow"
id="blogfriends">
<i class='fas fa-link fa-fw'></i>&nbsp;友人帐
</a>
</li>
<li>
<a class="nav home" href="/blog/about/"
rel="nofollow"
id="blogabout">
<i class='fas fa-info-circle fa-fw'></i>&nbsp;关于
</a>
</li>
</ul>
</div>
</cover>
<header class="l_header pure">
<div id="loading-bar-wrapper">
<div id="loading-bar" class="pure"></div>
</div>
<div class='wrapper'>
<div class="nav-main container container--flex">
<a class="logo flat-box" href='/blog/' >
MelodyHub
</a>
<div class='menu navgation'>
<ul class='h-list'>
<li>
<a class="nav flat-box" href="/blog/"
id="blog">
<i class='fas fa-grin fa-fw'></i>&nbsp;博文
</a>
</li>
<li>
<a class="nav flat-box" href="/blog/categories/"
rel="nofollow"
id="blogcategories">
<i class='fas fa-folder-open fa-fw'></i>&nbsp;分类
</a>
</li>
<li>
<a class="nav flat-box" href="/blog/tags/"
rel="nofollow"
id="blogtags">
<i class='fas fa-hashtag fa-fw'></i>&nbsp;标签
</a>
</li>
<li>
<a class="nav flat-box" href="/blog/archives/"
rel="nofollow"
id="blogarchives">
<i class='fas fa-archive fa-fw'></i>&nbsp;归档
</a>
</li>
</ul>
</div>
<div class="m_search">
<form name="searchform" class="form u-search-form">
<input type="text" class="input u-search-input" placeholder="搜索" />
<i class="icon fas fa-search fa-fw"></i>
</form>
</div>
<ul class='switcher h-list'>
<li class='s-search'><a class="fas fa-search fa-fw" href='javascript:void(0)'></a></li>
<li class='s-menu'><a class="fas fa-bars fa-fw" href='javascript:void(0)'></a></li>
</ul>
</div>
<div class='nav-sub container container--flex'>
<a class="logo flat-box"></a>
<ul class='switcher h-list'>
<li class='s-comment'><a class="flat-btn fas fa-comments fa-fw" href='javascript:void(0)'></a></li>
<li class='s-toc'><a class="flat-btn fas fa-list fa-fw" href='javascript:void(0)'></a></li>
</ul>
</div>
</div>
</header>
<aside class="menu-phone">
<header>
<nav class="menu navgation">
<ul>
<li>
<a class="nav flat-box" href="/blog/"
id="blog">
<i class='fas fa-clock fa-fw'></i>&nbsp;近期文章
</a>
</li>
<li>
<a class="nav flat-box" href="/blog/archives/"
rel="nofollow"
id="blogarchives">
<i class='fas fa-archive fa-fw'></i>&nbsp;文章归档
</a>
</li>
<li>
<a class="nav flat-box" href="/blog/projects/"
id="blogprojects">
<i class='fas fa-code-branch fa-fw'></i>&nbsp;成果展
</a>
</li>
<li>
<a class="nav flat-box" href="/blog/friends/"
rel="nofollow"
id="blogfriends">
<i class='fas fa-link fa-fw'></i>&nbsp;友人帐
</a>
</li>
<li>
<a class="nav flat-box" href="https://xaoxuu.com/wiki/material-x/"
rel="nofollow"
id="https:xaoxuu.comwikimaterial-x">
<i class='fas fa-book fa-fw'></i>&nbsp;随笔小抄
</a>
</li>
<li>
<a class="nav flat-box" href="/blog/about/"
rel="nofollow"
id="blogabout">
<i class='fas fa-info-circle fa-fw'></i>&nbsp;关于小站
</a>
</li>
</ul>
</nav>
</header>
</aside>
<script>setLoadingBarProgress(40);</script>
</div>
<div class="l_body">
<div class='body-wrapper'>
<div class='l_main'>
<article id="post" class="post white-box article-type-post" itemscope itemprop="blogPost">
<section class='meta'>
<div class="meta" id="header-meta">
<h1 class="title">
<a href="/blog/2020/02/18/Github%E6%8F%90%E9%80%9F/">
Github提速
</a>
</h1>
<div class='new-meta-box'>
<div class='new-meta-item author'>
<a href="https://melodyjerry.gitee.io/blog" rel="nofollow">
<i class="fas fa-user" aria-hidden="true"></i>
<p>Melody Jerry</p>
</a>
</div>
<div class="new-meta-item date">
<a class='notlink'>
<i class="fas fa-calendar-alt" aria-hidden="true"></i>
<p>2020-02-18</p>
</a>
</div>
<div class="new-meta-item browse busuanzi">
<a class='notlink'>
<i class="fas fa-eye" aria-hidden="true"></i>
<p>
<span id="busuanzi_value_page_pv">
<i class="fas fa-spinner fa-spin fa-fw" aria-hidden="true"></i>
</span>
</p>
</a>
</div>
<div class="new-meta-item wordcount">
<a class='notlink'>
<i class="fas fa-keyboard" aria-hidden="true"></i>
<p>字数统计:</p>
<p>274字</p>
</a>
</div>
<div class="new-meta-item readtime">
<a class='notlink'>
<i class="fas fa-hourglass-half" aria-hidden="true"></i>
<p>阅读时长≈</p>
<p>1分</p>
</a>
</div>
</div>
<hr>
</div>
</section>
<section class="article typo">
<div class="article-entry" itemprop="articleBody">
<p>经常要clone github中的一些项目,无奈如果不爬梯子的话速度实在是龟速,经常1k/s,于是献上改Hosts大法。</p>
<p>第一步:打开<a href="https://link.zhihu.com/?target=http%3A//codeload.github.com.ipaddress.com/%23ipinfo">http://codeload.github.com.ipaddress.com/#ipinfo</a> 找到你浏览器上实际显示的IP地址, 例图 :</p>
<p><img src="https://s2.ax1x.com/2020/02/19/3VCXo6.png" alt="3VCXo6.png"></p>
<p>第二步:按win+r唤起运行框,输入cmd,然后再依次ping一下上面的地址</p>
<p><img src="https://s2.ax1x.com/2020/02/19/3VPJYT.png" alt="3VPJYT.png"></p>
<p>第三步:打开你<code>C:\Windows\System32\drivers\etc\hosts</code>文件,在文件末尾追加如下一行即可</p>
<figure class="highlight plain"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">140.82.113.9 http:&#x2F;&#x2F;codeload.github.com</span><br></pre></td></tr></table></figure>
<a id="more"></a>
<p>另外以下这些github hosts,可能对你所在地区来说不是最优版本,最优hosts的选择可以参考上面三个步骤</p>
<figure class="highlight plain"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br><span class="line">5</span><br><span class="line">6</span><br><span class="line">7</span><br><span class="line">8</span><br><span class="line">9</span><br><span class="line">10</span><br><span class="line">11</span><br><span class="line">12</span><br><span class="line">13</span><br><span class="line">14</span><br><span class="line">15</span><br><span class="line">16</span><br><span class="line">17</span><br><span class="line">18</span><br></pre></td><td class="code"><pre><span class="line"># GitHub Start</span><br><span class="line">192.30.253.112 github.com</span><br><span class="line">192.30.253.119 gist.github.com</span><br><span class="line">151.101.100.133 assets-cdn.github.com</span><br><span class="line">151.101.100.133 raw.githubusercontent.com</span><br><span class="line">151.101.100.133 gist.githubusercontent.com</span><br><span class="line">151.101.100.133 cloud.githubusercontent.com</span><br><span class="line">151.101.100.133 camo.githubusercontent.com</span><br><span class="line">151.101.100.133 avatars0.githubusercontent.com</span><br><span class="line">151.101.100.133 avatars1.githubusercontent.com</span><br><span class="line">151.101.100.133 avatars2.githubusercontent.com</span><br><span class="line">151.101.100.133 avatars3.githubusercontent.com</span><br><span class="line">151.101.100.133 avatars4.githubusercontent.com</span><br><span class="line">151.101.100.133 avatars5.githubusercontent.com</span><br><span class="line">151.101.100.133 avatars6.githubusercontent.com</span><br><span class="line">151.101.100.133 avatars7.githubusercontent.com</span><br><span class="line">151.101.100.133 avatars8.githubusercontent.com</span><br><span class="line"># GitHub End</span><br></pre></td></tr></table></figure>
</div>
<br>
<section class='meta' id="footer-meta">
<div class='new-meta-box'>
<div class="new-meta-item date" itemprop="dateUpdated" datetime="2020-02-19T18:46:27+08:00">
<a class='notlink'>
<i class="fas fa-clock" aria-hidden="true"></i>
<p>更新于 2020年2月19日</p>
</a>
</div>
<div class="new-meta-item meta-tags"><a class="tag" href="/blog/tags/Github/" rel="nofollow"><i class="fas fa-tag" aria-hidden="true"></i><p>Github</p></a></div>
<div class="new-meta-item share -mob-share-list">
<div class="-mob-share-list share-body">
<a class="-mob-share-qq" title="QQ好友" rel="external nofollow noopener noreferrer"
href="http://connect.qq.com/widget/shareqq/index.html?url=https://melodyjerry.gitee.io/blog/2020/02/18/Github%E6%8F%90%E9%80%9F/&title=Github提速 | MelodyHub&summary=经常要clone github中的一些项目,无奈如果不爬梯子的话速度实在是龟速,经常1k/s,于是献上改Hosts大法。
第一步:打开http://codeload.github.com.ipaddress.com/#ipinfo 找到你浏览器上实际显示的IP地址, 例图 :
第二步:按win+r唤起运行框,输入cmd,然后再依次ping一下上面的地址
第三步:打开你C:\Windows\System32\drivers\etc\hosts文件,在文件末尾追加如下一行即可
1140.82.113.9 http:&#x2F;&#x2F;codeload.github.com"
>
<img src="https://cdn.jsdelivr.net/gh/xaoxuu/assets@19.1.9/logo/128/qq.png">
</a>
<a class="-mob-share-qzone" title="QQ空间" rel="external nofollow noopener noreferrer"
href="https://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=https://melodyjerry.gitee.io/blog/2020/02/18/Github%E6%8F%90%E9%80%9F/&title=Github提速 | MelodyHub&summary=经常要clone github中的一些项目,无奈如果不爬梯子的话速度实在是龟速,经常1k/s,于是献上改Hosts大法。
第一步:打开http://codeload.github.com.ipaddress.com/#ipinfo 找到你浏览器上实际显示的IP地址, 例图 :
第二步:按win+r唤起运行框,输入cmd,然后再依次ping一下上面的地址
第三步:打开你C:\Windows\System32\drivers\etc\hosts文件,在文件末尾追加如下一行即可
1140.82.113.9 http:&#x2F;&#x2F;codeload.github.com"
>
<img src="https://cdn.jsdelivr.net/gh/xaoxuu/assets@19.1.9/logo/128/qzone.png">
</a>
<a class="-mob-share-weibo" title="微博" rel="external nofollow noopener noreferrer"
href="http://service.weibo.com/share/share.php?url=https://melodyjerry.gitee.io/blog/2020/02/18/Github%E6%8F%90%E9%80%9F/&title=Github提速 | MelodyHub&summary=经常要clone github中的一些项目,无奈如果不爬梯子的话速度实在是龟速,经常1k/s,于是献上改Hosts大法。
第一步:打开http://codeload.github.com.ipaddress.com/#ipinfo 找到你浏览器上实际显示的IP地址, 例图 :
第二步:按win+r唤起运行框,输入cmd,然后再依次ping一下上面的地址
第三步:打开你C:\Windows\System32\drivers\etc\hosts文件,在文件末尾追加如下一行即可
1140.82.113.9 http:&#x2F;&#x2F;codeload.github.com"
>
<img src="https://cdn.jsdelivr.net/gh/xaoxuu/assets@19.1.9/logo/128/weibo.png">
</a>
</div>
</div>
</div>
</section>
<div class="prev-next">
<section class="prev">
<span class="art-item-left">
<h6><i class="fas fa-chevron-left" aria-hidden="true"></i>&nbsp;上一页</h6>
<h4>
<a href="/blog/2020/02/19/Tomcat%EF%BC%9A%E6%9C%8D%E5%8A%A1%E5%99%A8%E8%BD%AF%E4%BB%B6/" rel="prev" title="Tomcat:Web服务器软件">
Tomcat:Web服务器软件
</a>
</h4>
<h6 class="tags">
<a class="tag" href="/blog/tags/%E7%AC%94%E8%AE%B0/"><i class="fas fa-tag fa-fw" aria-hidden="true"></i> 笔记</a> <a class="tag" href="/blog/tags/JavaWeb/"><i class="fas fa-tag fa-fw" aria-hidden="true"></i> JavaWeb</a> <a class="tag" href="/blog/tags/Tomcat/"><i class="fas fa-tag fa-fw" aria-hidden="true"></i> Tomcat</a>
</h6>
</span>
</section>
<section class="next">
<span class="art-item-right" aria-hidden="true">
<h6>下一页&nbsp;<i class="fas fa-chevron-right" aria-hidden="true"></i></h6>
<h4>
<a href="/blog/2020/02/18/JavaScript%EF%BC%9A%E8%AE%A9%E9%A1%B5%E9%9D%A2%E5%85%83%E7%B4%A0%E5%8A%A8%E8%B5%B7%E6%9D%A5/" rel="prev" title="JavaScript:让页面元素动起来">
JavaScript:让页面元素动起来
</a>
</h4>
<h6 class="tags">
<a class="tag" href="/blog/tags/%E7%AC%94%E8%AE%B0/"><i class="fas fa-tag fa-fw" aria-hidden="true"></i> 笔记</a> <a class="tag" href="/blog/tags/JavaWeb/"><i class="fas fa-tag fa-fw" aria-hidden="true"></i> JavaWeb</a> <a class="tag" href="/blog/tags/JavaScript/"><i class="fas fa-tag fa-fw" aria-hidden="true"></i> JavaScript</a>
</h6>
</span>
</section>
</div>
</section>
</article>
<!-- 显示推荐文章和评论 -->
<article class="post white-box comments">
<section class="article typo">
<h4><i class="fas fa-comments fa-fw" aria-hidden="true"></i>&nbsp;评论</h4>
<section id="comments">
<div id="valine_container" class="valine_thread">
<i class="fas fa-spinner fa-spin fa-fw"></i>
</div>
</section>
</section>
</article>
<!-- 根据页面mathjax变量决定是否加载MathJax数学公式js -->
<script>
window.subData = {
title: 'Github提速',
tools: true
}
</script>
</div>
<aside class='l_side'>
<!-- 侧边栏-作者author-shake,未完成 <section class='widget author shake'> -->
<section class='widget author '>
<div class='content pure'>
<div class='avatar'>
<img class='avatar' src='https://i.loli.net/2020/02/10/6yndjPI2rHL94vJ.png'/>
</div>
<div class='text'>
<!-- 以下url可替换成https://m.mom1.cn/api/sp/api.js -->
<p><span id="jinrishici-sentence">MelodyHub</span></p>
<script src="https://sdk.jinrishici.com/v2/browser/jinrishici.js" charset="utf-8"></script>
<div id="binft"></div>
<!-- 彩色滚动变换字体 -->
<center><script>
var binft = 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()
};
binft(document.getElementById('binft'));
</script></center>
<!-- 待补充 -->
<!-- 待补充 -->
<!-- 待补充 -->
</div>
<div class="social-wrapper">
<a href="mailto:melodyjerry@163.com"
class="social fas fa-envelope flat-btn"
target="_blank"
rel="external nofollow noopener noreferrer">
</a>
<a href="https://github.com/melodyjerry/melodyjerry.github.io"
class="social fab fa-github flat-btn"
target="_blank"
rel="external nofollow noopener noreferrer">
</a>
<a href="https://music.163.com/#/user/home?id=247430004"
class="social fas fa-headphones-alt flat-btn"
target="_blank"
rel="external nofollow noopener noreferrer">
</a>
</div>
</div>
</section>
<section class='widget plain'>
<header class='pure'>
<div><i class="fas fa-file fa-fw" aria-hidden="true"></i>&nbsp;&nbsp;小小~公告牌</div>
<a class="rightBtn"
rel="nofollows"
href="/blog/treasures/"
title="treasures/">
<i class="far fa-bell fa-fw"></i></a>
</header>
<div class='content pure'>
<p><fancybox><img src="https://i.loli.net/2020/02/11/lMEgBFV2OdnCLN7.png" alt=""></fancybox><br><center>暂时不知道写什么 ( ͡° ͜ʖ ͡°)✧ </center></p>
</div>
</section>
<section class='widget grid'>
<header class='pure'>
<div><i class="fas fa-map-signs fa-fw" aria-hidden="true"></i>&nbsp;&nbsp;站内导航</div>
</header>
<div class='content pure'>
<ul class="grid navgation">
<li><a class="flat-box" title="/blog/" href="/blog/"
id="blog">
<i class="fas fa-clock fa-fw" aria-hidden="true"></i>
近期文章
</a></li>
<li><a class="flat-box" title="/blog/archives/" href="/blog/archives/"
rel="nofollow"
id="blogarchives">
<i class="fas fa-archive fa-fw" aria-hidden="true"></i>
文章归档
</a></li>
<li><a class="flat-box" title="/blog/projects/" href="/blog/projects/"
id="blogprojects">
<i class="fas fa-code-branch fa-fw" aria-hidden="true"></i>
成果展示
</a></li>
<li><a class="flat-box" title="/blog/friends/" href="/blog/friends/"
rel="nofollow"
id="blogfriends">
<i class="fas fa-link fa-fw" aria-hidden="true"></i>
友人手帐
</a></li>
<li><a class="flat-box" title="https://xaoxuu.com/wiki/material-x/" href="https://xaoxuu.com/wiki/material-x/"
rel="nofollow"
id="https:xaoxuu.comwikimaterial-x">
<i class="fas fa-book fa-fw" aria-hidden="true"></i>
随笔小抄
</a></li>
<li><a class="flat-box" title="/blog/about/" href="/blog/about/"
rel="nofollow"
id="blogabout">
<i class="fas fa-info-circle fa-fw" aria-hidden="true"></i>
关于小站
</a></li>
</ul>
</div>
</section>
<section class='widget tagcloud'>
<header class='pure'>
<div><i class="fas fa-tags fa-fw" aria-hidden="true"></i>&nbsp;&nbsp;热门标签</div>
<a class="rightBtn"
rel="nofollow"
href="/blog/tags/"
title="tags/">
<i class="fas fa-expand-arrows-alt fa-fw"></i></a>
</header>
<!--热门标签,旋转,来自https://arlxn.xyz/-->
<div class='content pure'>
<canvas width="225" height="250" id="resCanvas" style="">
<a href="/blog/tags/API/" style="font-size: 15.43px; color: #8f8f8f">API</a> <a href="/blog/tags/C-C/" style="font-size: 14px; color: #999">C/C++</a> <a href="/blog/tags/CSS/" style="font-size: 15.43px; color: #8f8f8f">CSS</a> <a href="/blog/tags/Docker/" style="font-size: 14.48px; color: #969696">Docker</a> <a href="/blog/tags/Druid/" style="font-size: 14.48px; color: #969696">Druid</a> <a href="/blog/tags/Git/" style="font-size: 15.9px; color: #8c8c8c">Git</a> <a href="/blog/tags/GitHub/" style="font-size: 15.43px; color: #8f8f8f">GitHub</a> <a href="/blog/tags/Github/" style="font-size: 14.48px; color: #969696">Github</a> <a href="/blog/tags/HTML/" style="font-size: 17.81px; color: #7f7f7f">HTML</a> <a href="/blog/tags/HTTP/" style="font-size: 17.33px; color: #828282">HTTP</a> <a href="/blog/tags/Hexo/" style="font-size: 21.14px; color: #686868">Hexo</a> <a href="/blog/tags/IDEA/" style="font-size: 19.71px; color: #727272">IDEA</a> <a href="/blog/tags/JAVA/" style="font-size: 14px; color: #999">JAVA</a> <a href="/blog/tags/JQuery/" style="font-size: 14px; color: #999">JQuery</a> <a href="/blog/tags/Java/" style="font-size: 23.52px; color: #585858">Java</a> <a href="/blog/tags/JavaScript/" style="font-size: 16.86px; color: #868686">JavaScript</a> <a href="/blog/tags/JavaWeb/" style="font-size: 23.05px; color: #5b5b5b">JavaWeb</a> <a href="/blog/tags/Linux/" style="font-size: 19.24px; color: #757575">Linux</a> <a href="/blog/tags/MVC/" style="font-size: 14px; color: #999">MVC</a> <a href="/blog/tags/Maven/" style="font-size: 15.43px; color: #8f8f8f">Maven</a> <a href="/blog/tags/MySQL/" style="font-size: 18.76px; color: #797979">MySQL</a> <a href="/blog/tags/SQL-Server/" style="font-size: 14.48px; color: #969696">SQL Server</a> <a href="/blog/tags/SSM/" style="font-size: 20.67px; color: #6c6c6c">SSM</a> <a href="/blog/tags/SVN/" style="font-size: 14.95px; color: #939393">SVN</a> <a href="/blog/tags/Servlet/" style="font-size: 14.48px; color: #969696">Servlet</a> <a href="/blog/tags/Tomcat/" style="font-size: 16.38px; color: #898989">Tomcat</a> <a href="/blog/tags/Web/" style="font-size: 15.43px; color: #8f8f8f">Web</a> <a href="/blog/tags/halo/" style="font-size: 14px; color: #999">halo</a> <a href="/blog/tags/jQuery/" style="font-size: 14px; color: #999">jQuery</a> <a href="/blog/tags/java/" style="font-size: 14px; color: #999">java</a> <a href="/blog/tags/%E4%BA%8B%E5%8A%A1/" style="font-size: 14px; color: #999">事务</a> <a href="/blog/tags/%E4%BA%91%E6%9C%8D%E5%8A%A1%E5%99%A8/" style="font-size: 14px; color: #999">云服务器</a> <a href="/blog/tags/%E5%8D%9A%E5%AE%A2/" style="font-size: 22.1px; color: #626262">博客</a> <a href="/blog/tags/%E5%AE%9D%E5%A1%94/" style="font-size: 14.48px; color: #969696">宝塔</a> <a href="/blog/tags/%E5%B0%8F%E6%8A%80%E5%B7%A7/" style="font-size: 22.57px; color: #5f5f5f">小技巧</a> <a href="/blog/tags/%E5%B7%A5%E5%85%B7/" style="font-size: 19.71px; color: #727272">工具</a> <a href="/blog/tags/%E6%8A%80%E5%B7%A7/" style="font-size: 14px; color: #999">技巧</a> <a href="/blog/tags/%E6%95%B0%E6%8D%AE%E5%BA%93/" style="font-size: 14px; color: #999">数据库</a> <a href="/blog/tags/%E6%96%87%E7%AB%A0/" style="font-size: 14px; color: #999">文章</a> <a href="/blog/tags/%E6%9C%8D%E5%8A%A1%E5%99%A8/" style="font-size: 18.29px; color: #7c7c7c">服务器</a> <a href="/blog/tags/%E7%94%B5%E5%BD%B1/" style="font-size: 14px; color: #999">电影</a> <a href="/blog/tags/%E7%AC%94%E8%AE%B0/" style="font-size: 24px; color: #555">笔记</a> <a href="/blog/tags/%E7%AE%97%E6%B3%95/" style="font-size: 21.62px; color: #656565">算法</a> <a href="/blog/tags/%E7%B3%BB%E7%BB%9F/" style="font-size: 14px; color: #999">系统</a> <a href="/blog/tags/%E7%B4%A0%E6%9D%90/" style="font-size: 14px; color: #999">素材</a> <a href="/blog/tags/%E8%84%9A%E6%9C%AC/" style="font-size: 14px; color: #999">脚本</a> <a href="/blog/tags/%E8%93%9D%E6%A1%A5%E6%9D%AF/" style="font-size: 14.48px; color: #969696">蓝桥杯</a> <a href="/blog/tags/%E9%95%9C%E5%83%8F/" style="font-size: 14px; color: #999">镜像</a> <a href="/blog/tags/%E9%9A%8F%E7%AC%94/" style="font-size: 20.19px; color: #6f6f6f">随笔</a> <a href="/blog/tags/%E9%9F%B3%E4%B9%90/" style="font-size: 14px; color: #999">音乐</a></canvas>
</div>
</section>
<section class='widget list'>
<header class='pure'>
<div><i class="fas fa-thumbs-up fa-fw" aria-hidden="true"></i>&nbsp;&nbsp;强烈推荐</div>
</header>
<div class='content pure'>
<ul class="entry">
<li><a class="flat-box" title="https://xaoxuu.com/wiki/hexo.sh/" href="https://xaoxuu.com/wiki/hexo.sh/"
>
<div class='name'>
<i class=" fa-fw" aria-hidden="true"></i>
&nbsp;&nbsp;Hexo脚本(Mac)
</div>
</a></li>
<li><a class="flat-box" title="https://xaoxuu.com/wiki/vim-cn.sh/" href="https://xaoxuu.com/wiki/vim-cn.sh/"
>
<div class='name'>
<i class=" fa-fw" aria-hidden="true"></i>
&nbsp;&nbsp;图床脚本(Mac)
</div>
</a></li>
<li><a class="flat-box" title="https://sm.ms/" href="https://sm.ms/"
>
<div class='name'>
<i class=" fa-fw" aria-hidden="true"></i>
&nbsp;&nbsp;图床 SM.MS
</div>
</a></li>
<li><a class="flat-box" title="https://realfavicongenerator.net" href="https://realfavicongenerator.net"
>
<div class='name'>
<i class=" fa-fw" aria-hidden="true"></i>
&nbsp;&nbsp;生成 Favicon
</div>
</a></li>
<li><a class="flat-box" title="https://io-oi.me/tech/hexo-next-optimization/" href="https://io-oi.me/tech/hexo-next-optimization/"
>
<div class='name'>
<i class=" fa-fw" aria-hidden="true"></i>
&nbsp;&nbsp;打造个性超赞博客
</div>
</a></li>
<li><a class="flat-box" title="https://mxclub.github.io/" href="https://mxclub.github.io/"
>
<div class='name'>
<i class=" fa-fw" aria-hidden="true"></i>
&nbsp;&nbsp;Material X 主题文档(部分)
</div>
</a></li>
<li><a class="flat-box" title="https://www.cnblogs.com/cxk1995/p/5800196.html" href="https://www.cnblogs.com/cxk1995/p/5800196.html"
>
<div class='name'>
<i class=" fa-fw" aria-hidden="true"></i>
&nbsp;&nbsp;使用git将项目上传到github(最简单方法)
</div>
</a></li>
<li><a class="flat-box" title="https://me.idealli.com/post/73ad4183.html" href="https://me.idealli.com/post/73ad4183.html"
>
<div class='name'>
<i class=" fa-fw" aria-hidden="true"></i>
&nbsp;&nbsp;给hexo静态博客添加动态相册功能
</div>
</a></li>
</ul>
</div>
</section>
</aside>
<footer id="footer" class="clearfix">
<div class="social-wrapper">
<a href="mailto:melodyjerry@163.com"
class="social fas fa-envelope flat-btn"
target="_blank"
rel="external nofollow noopener noreferrer">
</a>
<a href="https://github.com/melodyjerry/melodyjerry.github.io"
class="social fab fa-github flat-btn"
target="_blank"
rel="external nofollow noopener noreferrer">
</a>
<a href="https://music.163.com/#/user/home?id=247430004"
class="social fas fa-headphones-alt flat-btn"
target="_blank"
rel="external nofollow noopener noreferrer">
</a>
</div>
<br>
<div><p>博客内容遵循 <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/deed.zh" target="_blank" rel="noopener">署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0) 协议</a></p>
</div>
<div>
本站使用
<!--<a href="https://xaoxuu.com/wiki/material-x/" target="_blank" class="codename">Material-X</a>-->
<a href="https://hexo.io/zh-cn/" target="_blank" class="codename">Hexo</a>
作为驱动引擎
总浏览量为
<span id="busuanzi_value_site_pv"><i class="fas fa-spinner fa-spin fa-fw" aria-hidden="true"></i></span>
总访客数为
<span id="busuanzi_value_site_uv"></span>
<!--CNZZ统计-->
<script type="text/javascript">var cnzz_protocol = (("https:" == document.location.protocol) ? "https://" : "http://");document.write(unescape("%3Cspan id='cnzz_stat_icon_1278597794'%3E%3C/span%3E%3Cscript src='" + cnzz_protocol + "s4.cnzz.com/z_stat.php%3Fid%3D1278597794%26show%3Dpic' type='text/javascript'%3E%3C/script%3E"));</script>
</div>
<div>
<span id="timeDate">载入天数...</span><span id="times">载入时分秒...</span>
<script>
var now = new Date();
function createtime() {
var grt= new Date("11/06/2019 17:38:00");//在此处修改你的建站时间,格式:月/日/年 时:分:秒
now.setTime(now.getTime()+250);
days = (now - grt ) / 1000 / 60 / 60 / 24; dnum = Math.floor(days);
hours = (now - grt ) / 1000 / 60 / 60 - (24 * dnum); hnum = Math.floor(hours);
if(String(hnum).length ==1 ){hnum = "0" + hnum;} minutes = (now - grt ) / 1000 /60 - (24 * 60 * dnum) - (60 * hnum);
mnum = Math.floor(minutes); if(String(mnum).length ==1 ){mnum = "0" + mnum;}
seconds = (now - grt ) / 1000 - (24 * 60 * 60 * dnum) - (60 * 60 * hnum) - (60 * mnum);
snum = Math.round(seconds); if(String(snum).length ==1 ){snum = "0" + snum;}
document.getElementById("timeDate").innerHTML = "小站勉强运行了 "+dnum+"";
document.getElementById("times").innerHTML = hnum + " 小时 " + mnum + "" + snum + " 秒 ( ͡° ͜ʖ ͡°)✧ ";
}
setInterval("createtime()",250);
</script>
</div>
</footer>
<script>setLoadingBarProgress(80);</script>
<script>setLoadingBarProgress(60);</script>
</div>
<a class="s-top fas fa-arrow-up fa-fw" href='javascript:void(0)'></a>
</div>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.3.1/dist/jquery.min.js"></script>
<script>
var GOOGLE_CUSTOM_SEARCH_API_KEY = "";
var GOOGLE_CUSTOM_SEARCH_ENGINE_ID = "";
var ALGOLIA_API_KEY = "";
var ALGOLIA_APP_ID = "";
var ALGOLIA_INDEX_NAME = "";
var AZURE_SERVICE_NAME = "";
var AZURE_INDEX_NAME = "";
var AZURE_QUERY_KEY = "";
var BAIDU_API_ID = "";
var SEARCH_SERVICE = "hexo" || "hexo";
var ROOT = "/blog/"||"/";
if(!ROOT.endsWith('/'))ROOT += '/';
</script>
<script src="//instant.page/1.2.2" type="module" integrity="sha384-2xV8M5griQmzyiY3CDqh1dn4z3llDVqZDqzjzcY+jCBCk/a5fXJmuZ/40JJAPeoU"></script>
<script async src="https://cdn.jsdelivr.net/npm/scrollreveal@4.0.5/dist/scrollreveal.min.js"></script>
<script type="text/javascript">
$(function() {
const $reveal = $('.reveal');
if ($reveal.length === 0) return;
const sr = ScrollReveal({ distance: 0 });
sr.reveal('.reveal');
});
</script>
<script src="https://cdn.jsdelivr.net/npm/node-waves@0.7.6/dist/waves.min.js"></script>
<script type="text/javascript">
$(function() {
Waves.attach('.flat-btn', ['waves-button']);
Waves.attach('.float-btn', ['waves-button', 'waves-float']);
Waves.attach('.float-btn-light', ['waves-button', 'waves-float', 'waves-light']);
Waves.attach('.flat-box', ['waves-block']);
Waves.attach('.float-box', ['waves-block', 'waves-float']);
Waves.attach('.waves-image');
Waves.init();
});
</script>
<script async src="https://cdn.jsdelivr.net/gh/xaoxuu/cdn-busuanzi@2.3/js/busuanzi.pure.mini.js"></script>
<!-- fastclick -->
<script src="https://cdn.jsdelivr.net/npm/fastclick@1.0.6/lib/fastclick.min.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
FastClick.attach(document.body)
}, false)
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-backstretch/2.0.4/jquery.backstretch.min.js"></script>
<script type="text/javascript">
$(function(){
if ('') {
$('').backstretch(
["https://img.vim-cn.com/ab/83bf717f43e05f8388ccb22ac2eab85175dd73.jpg", "https://ssyerv1.oss-cn-hangzhou.aliyuncs.com/picture/9be900c53a224906b211e3197722875b.jpg!sswm", "https://img.vim-cn.com/bc/d93b404f17a33b1f8110dd7ad4c3f29d89ec58.jpg", "https://i.loli.net/2020/02/03/aMKFIWRXosY9tGE.jpg", "https://cdn.jsdelivr.net/gh/cwxyr/mycdn@master/wallhaven-2ee95g.png", "https://ssyerv1.oss-cn-hangzhou.aliyuncs.com/picture/a59feb981c8948bab6a798fd3c0b102d.jpg!sswm", "https://ssyerv1.oss-cn-hangzhou.aliyuncs.com/picture/fcf6db62131446aeaa6153b4a052ff46.jpg!sswm", "https://ssyerv1.oss-cn-hangzhou.aliyuncs.com/picture/3c937de283cc47059765a7bff0a9d909.jpg!sswm", "https://i.loli.net/2020/02/03/AJ6FU3yOIj9QXGa.jpg", "https://ssyerv1.oss-cn-hangzhou.aliyuncs.com/picture/a013f27ee7aa45e7942c399450d5e1ea.jpg!sswm", "https://ssyerv1.oss-cn-hangzhou.aliyuncs.com/picture/6233b98b56f8492aaa91949bd498bac6.jpg!sswm", "https://ssyerv1.oss-cn-hangzhou.aliyuncs.com/picture/380dd4d772f04c2c88d6a3afed964854.jpg!sswm", "https://ssyerv1.oss-cn-hangzhou.aliyuncs.com/picture/9d245fbafc4d4a8c957f6f413a5e57ee.jpg!sswm", "https://ssyerv1.oss-cn-hangzhou.aliyuncs.com/picture/92de1a94b5db4d369cb1d3df777adce9.jpg!sswm", "https://ssyerv1.oss-cn-hangzhou.aliyuncs.com/picture/e933ff6128504908b946a982411a72c0.jpg!sswm", "https://ssyerv1.oss-cn-hangzhou.aliyuncs.com/picture/b397ed63e8aa496c9d4bc93935c626b4.jpg!sswm"],
{
duration: "3000",
fade: "500"
});
} else {
$.backstretch(
["https://img.vim-cn.com/ab/83bf717f43e05f8388ccb22ac2eab85175dd73.jpg", "https://ssyerv1.oss-cn-hangzhou.aliyuncs.com/picture/9be900c53a224906b211e3197722875b.jpg!sswm", "https://img.vim-cn.com/bc/d93b404f17a33b1f8110dd7ad4c3f29d89ec58.jpg", "https://i.loli.net/2020/02/03/aMKFIWRXosY9tGE.jpg", "https://cdn.jsdelivr.net/gh/cwxyr/mycdn@master/wallhaven-2ee95g.png", "https://ssyerv1.oss-cn-hangzhou.aliyuncs.com/picture/a59feb981c8948bab6a798fd3c0b102d.jpg!sswm", "https://ssyerv1.oss-cn-hangzhou.aliyuncs.com/picture/fcf6db62131446aeaa6153b4a052ff46.jpg!sswm", "https://ssyerv1.oss-cn-hangzhou.aliyuncs.com/picture/3c937de283cc47059765a7bff0a9d909.jpg!sswm", "https://i.loli.net/2020/02/03/AJ6FU3yOIj9QXGa.jpg", "https://ssyerv1.oss-cn-hangzhou.aliyuncs.com/picture/a013f27ee7aa45e7942c399450d5e1ea.jpg!sswm", "https://ssyerv1.oss-cn-hangzhou.aliyuncs.com/picture/6233b98b56f8492aaa91949bd498bac6.jpg!sswm", "https://ssyerv1.oss-cn-hangzhou.aliyuncs.com/picture/380dd4d772f04c2c88d6a3afed964854.jpg!sswm", "https://ssyerv1.oss-cn-hangzhou.aliyuncs.com/picture/9d245fbafc4d4a8c957f6f413a5e57ee.jpg!sswm", "https://ssyerv1.oss-cn-hangzhou.aliyuncs.com/picture/92de1a94b5db4d369cb1d3df777adce9.jpg!sswm", "https://ssyerv1.oss-cn-hangzhou.aliyuncs.com/picture/e933ff6128504908b946a982411a72c0.jpg!sswm", "https://ssyerv1.oss-cn-hangzhou.aliyuncs.com/picture/b397ed63e8aa496c9d4bc93935c626b4.jpg!sswm"],
{
duration: "3000",
fade: "500"
});
}
});
</script>
<script src="//cdn1.lncld.net/static/js/3.0.4/av-min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/xaoxuu/volantis@1.0.6/js/volantis.min.js"></script>
<script>
var GUEST_INFO = ['nick','mail','link'];
var guest_info = 'nick,mail,link'.split(',').filter(function(item){
return GUEST_INFO.indexOf(item) > -1
});
var notify = 'true' == true;
var verify = 'true' == true;
var valine = new Valine();
valine.init({
el: '#valine_container',
notify: notify,
verify: verify,
guest_info: guest_info,
appId: "UNKL0FXJFAFOKRM1mGyL3Y2s-gzGzoHsz",
appKey: "HjUUcTY42RErTnIt7O58GhvH",
placeholder: "( ͡° ͜ʖ ͡°)✧ 来啊~",
pageSize:'10',
avatar:'wavatar',
lang:'zh-cn',
highlight:'true'
})
</script>
<script src="https://cdn.jsdelivr.net/gh/xaoxuu/cdn-material-x@19.11/js/app.js"></script>
<script src="https://cdn.jsdelivr.net/gh/xaoxuu/cdn-material-x@19.11/js/search.js"></script>
<!-- 复制 -->
<script src="https://cdn.jsdelivr.net/npm/clipboard@2/dist/clipboard.min.js"></script>
<script>
let COPY_SUCCESS = "复制成功";
let COPY_FAILURE = "复制失败";
/*页面载入完成后,创建复制按钮*/
!function (e, t, a) {
/* code */
var initCopyCode = function(){
var copyHtml = '';
copyHtml += '<button class="btn-copy" data-clipboard-snippet="">';
copyHtml += ' <i class="fa fa-copy"></i><span>复制</span>';
copyHtml += '</button>';
$(".highlight .code pre").before(copyHtml);
var clipboard = new ClipboardJS('.btn-copy', {
target: function(trigger) {
return trigger.nextElementSibling;
}
});
clipboard.on('success', function(e) {
//您可以加入成功提示
console.info('Action:', e.action);
console.info('Text:', e.text);
console.info('Trigger:', e.trigger);
success_prompt(COPY_SUCCESS);
e.clearSelection();
});
clipboard.on('error', function(e) {
//您可以加入失败提示
console.error('Action:', e.action);
console.error('Trigger:', e.trigger);
fail_prompt(COPY_FAILURE);
});
}
initCopyCode();
}(window, document);
/**
* 弹出式提示框,默认1.5秒自动消失
* @param message 提示信息
* @param style 提示样式,有alert-success、alert-danger、alert-warning、alert-info
* @param time 消失时间
*/
var prompt = function (message, style, time)
{
style = (style === undefined) ? 'alert-success' : style;
time = (time === undefined) ? 1500 : time*1000;
$('<div>')
.appendTo('body')
.addClass('alert ' + style)
.html(message)
.show()
.delay(time)
.fadeOut();
};
// 成功提示
var success_prompt = function(message, time)
{
prompt(message, 'alert-success', time);
};
// 失败提示
var fail_prompt = function(message, time)
{
prompt(message, 'alert-danger', time);
};
// 提醒
var warning_prompt = function(message, time)
{
prompt(message, 'alert-warning', time);
};
// 信息提示
var info_prompt = function(message, time)
{
prompt(message, 'alert-info', time);
};
</script>
<!-- fancybox -->
<script src="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.js"></script>
<script>
let LAZY_LOAD_IMAGE = "";
$(".article-entry").find("fancybox").find("img").each(function () {
var element = document.createElement("a");
$(element).attr("data-fancybox", "gallery");
$(element).attr("href", $(this).attr("src"));
/* 图片采用懒加载处理时,
* 一般图片标签内会有个属性名来存放图片的真实地址,比如 data-original,
* 那么此处将原本的属性名src替换为对应属性名data-original,
* 修改如下
*/
if (LAZY_LOAD_IMAGE) {
$(element).attr("href", $(this).attr("data-original"));
}
$(this).wrap(element);
});
</script>
<!--CNZZ统计-->
<script type="text/javascript">var cnzz_protocol = (("https:" == document.location.protocol) ? "https://" : "http://");document.write(unescape("%3Cspan id='cnzz_stat_icon_1278597794'%3E%3C/span%3E%3Cscript src='" + cnzz_protocol + "s4.cnzz.com/z_stat.php%3Fid%3D1278597794%26show%3Dpic' type='text/javascript'%3E%3C/script%3E"));</script>
<script>setLoadingBarProgress(100);</script>
<!--动态线条背景-->
<script type="text/javascript"
color="255,0,0" opacity='1' zIndex="-2" count="150" src="//cdn.bootcss.com/canvas-nest.js/1.0.0/canvas-nest.min.js">
</script>
<!-- 页面点击小红心 -->
<!--<script type="text/javascript" src="/js/love.js"></script> -->
<!-- 页面鼠标点击烟花爆炸效果 -->
<!--<canvas class="fireworks" style="position: fixed;left: 0;top: 0;z-index: 1; pointer-events: none;" ></canvas>
<script type="text/javascript" src="//cdn.bootcss.com/animejs/2.2.0/anime.min.js"></script>
<script type="text/javascript" src="/js/fireworks.js"></script> -->
<!--浏览器搞笑标题、浏览器搞笑标题-->
<!-- <script type="text/javascript" src="/js/FunnyTitle.js"></script> -->
<!--网站访客地理信息-->
<script type="text/javascript" src="//rf.revolvermaps.com/0/0/8.js?i=5eqiqb8vl6p&amp;m=2&amp;c=ff0000&amp;cr1=ffffff&amp;f=arial&amp;l=33&amp;z=17&amp;rx=-40&amp;lx=-540&amp;ly=520&amp;hi=60" async="async"></script>
<!-- 天气挂件 -->
<div id="tp-weather-widget"></div>
<script>
(function(a,h,g,f,e,d,c,b){b=function(){d=h.createElement(g);c=h.getElementsByTagName(g)[0];d.src=e;d.charset="utf-8";d.async=1;c.parentNode.insertBefore(d,c)};a["SeniverseWeatherWidgetObject"]=f;a[f]||(a[f]=function(){(a[f].q=a[f].q||[]).push(arguments)});a[f].l=+new Date();if(a.attachEvent){a.attachEvent("onload",b)}else{a.addEventListener("load",b,false)}}(window,document,"script","SeniverseWeatherWidget","//cdn.sencdn.com/widget2/static/js/bundle.js?t="+parseInt((new Date().getTime() / 100000000).toString(),10)));
window.SeniverseWeatherWidget('show', {
flavor: "bubble",
location: "WS0E9D8WN298",
geolocation: true,
language: "zh-Hans",
unit: "c",
theme: "auto",
token: "5fd5b254-57fe-4f8a-8a13-f92485efeb0b",
hover: "enabled",
container: "tp-weather-widget"
})
</script>
<!-- 打字特效(蓝色字体) -->
<script src="https://cdn.jsdelivr.net/npm/typed.js@2.0.11"></script>
<script>var typed = new Typed("#subtitle", { strings: ["Live a good life, write some good code !!!", "愿自己的努力终将获得回报。", "花开不是为了花落,而是为了开的更加灿烂。", "没有伞的孩子必须努力奔跑!", "欲望以提升热忱,毅力以磨平高山。", "如果放弃太早,你永远都不知道自己会错过什么。", "没有礁石,就没有美丽的浪花;没有挫折,就没有壮丽的人生。"], startDelay: 1000, typeSpeed: 100, loop: !0, backSpeed: 60, backDelay: 2000, showCursor: !0 })</script>
<!--浏览器搞笑标题-->
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/TRHX/CDN-for-itrhx.com@3.0.6/js/FunnyTitle.js"></script>
<!--fancybox-->
<script src="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.js"></script>
<!--音乐-->
<script src="https://cdn.jsdelivr.net/npm/aplayer@1.10/dist/APlayer.min.js"></script>
<!--樱花瓣飘落-->
<script src="https://cdn.jsdelivr.net/gh/TRHX/CDN-for-love109.cn@2.0.6/js/sakura.js"></script>
<!--速度优化脚本-->
<script src="https://cdn.jsdelivr.net/gh/TRHX/CDN-for-itrhx.com@2.0.6/js/instantclick-1.2.2.js" type="module"></script>
<!--热门标签,旋转,来自https://arlxn.xyz/-->
<!--tagcloud.ejs-->
<script src="https://createdestruction.github.io/js/tagcanvas.js"></script>
<script src="https://createdestruction.github.io/js/tagcloud.js"></script>
<!-- 单击显示颜文字 | Designed by Lxn -->
<script type="text/javascript" src="https://arlxn.xyz/js/click_show_text.js"></script>
<!--绚丽彩虹播放器-->
<!--源码来自https://www.liaofuzhan.com/posts/2636059693.html-->
<!-- Your XlchPlayerKey -->
<!--<script>XlchKey="O7NQ6f6YIg";</script>-->
<!-- font-awesome 4.2.0 -->
<!--<link href="https://lib.baomitu.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">-->
<!-- JQuery-mousewheel 3.1.9 -->
<!--<script src="https://lib.baomitu.com/jquery-mousewheel/3.1.9/jquery.mousewheel.min.js"></script>-->
<!-- Scrollbar -->
<!--<script src="https://static.https.badapple.top/BadApplePlayer/js/scrollbar.js"></script>-->
<!-- BadApplePlayer -->
<!--<script src="https://static.https.badapple.top/BadApplePlayer/Player.js"></script>-->
<!--宅音乐播放器 https://player.ilt.me/admin-->
<script id="ilt" src="https://player.ilt.me/player/js/player.js" key="992f0d81b6b74b93b6bbdb56f57a6c58"></script>
<!--闲聊么http://www.xianliao.me/faq-->
<script>
var xlm_wid='15920';
var xlm_url='https://www.xianliao.me/';
</script>
<script type='text/javascript' charset='UTF-8' src='https://www.xianliao.me/embed.js'></script>
<script src="/blog/live2dw/lib/L2Dwidget.min.js?094cbace49a39548bed64abff5988b05"></script><script>L2Dwidget.init({"model":{"jsonPath":"/blog/live2dw/assets/assets/haruto.model.json"},"display":{"position":"left","width":150,"height":300},"tagMode":false,"debug":false,"mobile":{"show":true},"log":false,"pluginJsPath":"lib/","pluginModelPath":"assets/","pluginRootPath":"live2dw/"});</script></body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/melodyjerry/blog.git
git@gitee.com:melodyjerry/blog.git
melodyjerry
blog
blog
beb20b7eadbbfb7f7d1eb93a71da185968e825e4

搜索帮助