Skip to content

Commit

Permalink
Site updated: 2023-10-01 10:13:46
Browse files Browse the repository at this point in the history
  • Loading branch information
thinklive1 committed Oct 1, 2023
1 parent 8c2d0bc commit 6e292e5
Show file tree
Hide file tree
Showing 10 changed files with 63 additions and 19 deletions.
8 changes: 4 additions & 4 deletions 2023/09/17/thinklive的迪瑞克拉图书馆/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<meta property="og:description" content="欢迎来到迪瑞克拉这里是thinklive的个人博客,不定时地会发一些个人技术学习心得和生活体会使用左侧的分类来定位内容 迪瑞克拉的由来狄利克雷函数(英语:dirichlet function)是一个定义在实数范围上、值域不连续的函数。狄利克雷函数的图像以Y轴为对称轴,是一个偶函数,它处处不连续,处处极限不存在,不可黎曼积分。这是一个处处不连续的可测函数。在我看来它象征着混沌,不可知与无限的可">
<meta property="og:locale" content="zh_CN">
<meta property="article:published_time" content="2023-09-17T02:50:32.000Z">
<meta property="article:modified_time" content="2023-09-30T12:59:19.843Z">
<meta property="article:modified_time" content="2023-09-30T15:15:58.397Z">
<meta property="article:author" content="thinklive">
<meta name="twitter:card" content="summary">

Expand Down Expand Up @@ -279,7 +279,7 @@ <h1 class="post-title" itemprop="name headline">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2023-09-30 20:59:19" itemprop="dateModified" datetime="2023-09-30T20:59:19+08:00">2023-09-30</time>
<time title="修改时间:2023-09-30 23:15:58" itemprop="dateModified" datetime="2023-09-30T23:15:58+08:00">2023-09-30</time>
</span>


Expand All @@ -296,7 +296,7 @@ <h1 class="post-title" itemprop="name headline">
<i class="far fa-file-word"></i>
</span>
<span class="post-meta-item-text">本文字数:</span>
<span>856</span>
<span>877</span>
</span>
<span class="post-meta-item" title="阅读时长">
<span class="post-meta-item-icon">
Expand Down Expand Up @@ -327,7 +327,7 @@ <h2 id="更新日志"><a href="#更新日志" class="headerlink" title="更新
<p>2023&#x2F;9&#x2F;27<br>开启了一些next的小功能,侧边栏加了一个thinklive的赛博朋克logo</p>
<p>2023&#x2F;9&#x2F;28<br>新增了加密页面,由秘密这个目录名检索,密码不会向任何人透露,部分页面会有提示</p>
<p>2023&#x2F;9&#x2F;29<br>新增了资源地图菜单,点击会跳转到使用不同主题的子站,可以通过子站的侧边栏回到主页</p>
<p>2023&#x2F;9&#x2F;30<br>给子站加了看板娘,主站加了鼠标轨迹,子站加了鼠标轨迹和点击烟花特效,看板娘有截屏,提示等功能,但是主站不会加,毕竟主站定位比较严肃嘛</p>
<p>2023&#x2F;9&#x2F;30<br>给子站加了看板娘,主站加了鼠标轨迹,子站加了鼠标轨迹和点击烟花特效,看板娘有截屏,提示等功能,但是主站不会加,毕竟主站定位比较严肃嘛,顺便加了个小彩蛋,离开页面一秒后就能看到</p>

</div>

Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ <h2 class="post-title" itemprop="name headline">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2023-09-30 20:59:19" itemprop="dateModified" datetime="2023-09-30T20:59:19+08:00">2023-09-30</time>
<time title="修改时间:2023-09-30 23:15:58" itemprop="dateModified" datetime="2023-09-30T23:15:58+08:00">2023-09-30</time>
</span>


Expand All @@ -285,7 +285,7 @@ <h2 class="post-title" itemprop="name headline">
<i class="far fa-file-word"></i>
</span>
<span class="post-meta-item-text">本文字数:</span>
<span>856</span>
<span>877</span>
</span>
<span class="post-meta-item" title="阅读时长">
<span class="post-meta-item-icon">
Expand Down
26 changes: 19 additions & 7 deletions js/tab-title.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const originalTitle = document.title;

let hidden = '繧「繝ェ繧ケ繧呈尔縺励※缧ゅい繝ェ繧ケ繧呈?縺励ェ縺?';
let visible = '被发现了被发现了被发现了被发现了';
let hidden = '繧「繝ェ繧ケ繧呈尔縺励※缧ゅい繝ェ繧ケ繧呈?縺励ェ縺?';
let visible = '被发现了被发现了被发现了被发现了';

let isHidden = false;
let switchTimer = null;
Expand All @@ -17,20 +17,32 @@ function updateTitle() {
}

document.addEventListener('visibilitychange', function() {

if (document.hidden) {
// 页面隐藏后,3秒切换为 hidden 标题

if (switchTimer) {
clearTimeout(switchTimer);
switchTimer = null;
}

updateTitle();
switchTimer = setTimeout(() => {
// 隐藏后切换标题
isHidden = true;
updateTitle();
}, 1000);

} else {
// 页面显示后,显示 visible 标题3秒
isHidden = false;
updateTitle();


isHidden = false;
updateTitle();

switchTimer = setTimeout(() => {
switchTimer = null;
updateTitle();
}, 3000);
}, 1000);

}

});
2 changes: 1 addition & 1 deletion search.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<p>2023&#x2F;9&#x2F;27<br>开启了一些next的小功能,侧边栏加了一个thinklive的赛博朋克logo</p>
<p>2023&#x2F;9&#x2F;28<br>新增了加密页面,由秘密这个目录名检索,密码不会向任何人透露,部分页面会有提示</p>
<p>2023&#x2F;9&#x2F;29<br>新增了资源地图菜单,点击会跳转到使用不同主题的子站,可以通过子站的侧边栏回到主页</p>
<p>2023&#x2F;9&#x2F;30<br>给子站加了看板娘,主站加了鼠标轨迹,子站加了鼠标轨迹和点击烟花特效,看板娘有截屏,提示等功能,但是主站不会加,毕竟主站定位比较严肃嘛</p>
<p>2023&#x2F;9&#x2F;30<br>给子站加了看板娘,主站加了鼠标轨迹,子站加了鼠标轨迹和点击烟花特效,看板娘有截屏,提示等功能,但是主站不会加,毕竟主站定位比较严肃嘛,顺便加了个小彩蛋,离开页面一秒后就能看到</p>
]]></content>
</entry>
<entry>
Expand Down
2 changes: 1 addition & 1 deletion webstack/archives/2023/09/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
<ul class="dropdown-menu languages">


<li class="active">
<li class="">
<a href="/webstack/index.html">
<img src="/webstack/images/flags/flag-cn.png" alt="flag-cn" alt="flag-cn" /> Chinese
</a>
Expand Down
2 changes: 1 addition & 1 deletion webstack/archives/2023/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
<ul class="dropdown-menu languages">


<li class="active">
<li class="">
<a href="/webstack/index.html">
<img src="/webstack/images/flags/flag-cn.png" alt="flag-cn" alt="flag-cn" /> Chinese
</a>
Expand Down
2 changes: 1 addition & 1 deletion webstack/archives/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
<ul class="dropdown-menu languages">


<li class="active">
<li class="">
<a href="/webstack/index.html">
<img src="/webstack/images/flags/flag-cn.png" alt="flag-cn" alt="flag-cn" /> Chinese
</a>
Expand Down
Binary file added webstack/images/logos/git.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 17 additions & 1 deletion webstack/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
<ul class="dropdown-menu languages">


<li class="active">
<li class="">
<a href="/webstack/index.html">
<img src="/webstack/images/flags/flag-cn.png" alt="flag-cn" alt="flag-cn" /> Chinese
</a>
Expand Down Expand Up @@ -392,6 +392,22 @@ <h4 class="text-gray"><i class="linecons-tag" style="margin-right: 7px;" id="编
</div>
</div>

<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://git-scm.com/book/zh/v2', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://git-scm.com/book/zh/v2">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/webstack/images/logos/git.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>pro git</strong>
</a>
<p class="overflowClip_2">基本上是程序员必看的git使用说明</p>
</div>
</div>
</div>
</div>

</div>
<br />

Expand Down
18 changes: 17 additions & 1 deletion webstack/webstack/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
<ul class="dropdown-menu languages">


<li class="active">
<li class="">
<a href="/webstack/index.html">
<img src="/webstack/images/flags/flag-cn.png" alt="flag-cn" alt="flag-cn" /> Chinese
</a>
Expand Down Expand Up @@ -392,6 +392,22 @@ <h4 class="text-gray"><i class="linecons-tag" style="margin-right: 7px;" id="编
</div>
</div>

<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://git-scm.com/book/zh/v2', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://git-scm.com/book/zh/v2">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/webstack/images/logos/git.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>pro git</strong>
</a>
<p class="overflowClip_2">基本上是程序员必看的git使用说明</p>
</div>
</div>
</div>
</div>

</div>
<br />

Expand Down

0 comments on commit 6e292e5

Please sign in to comment.