assets/js/app.min.js in jekyll-theme-h2o-ac-1.2.1 vs assets/js/app.min.js in jekyll-theme-h2o-ac-1.3.0
- old
+ new
@@ -1,686 +2 @@
-/******/ (() => { // webpackBootstrap
-/******/ var __webpack_modules__ = ({
-
-/***/ "./dev/js/index.js":
-/*!*************************!*\
- !*** ./dev/js/index.js ***!
- \*************************/
-/***/ (() => {
-
-$(document).ready(function () {
- document.body.addEventListener('touchstart', function () {}, { passive: true });
-
- var nav = $('.g-nav');
- var baseurl = $("meta[property='og:baseurl']").attr('content');
- var logo = $('.g-logo');
- var themeStyle = $('.g-banner').attr('data-theme');
- logo.css({
- 'background': 'url(' + baseurl + '/assets/icons/' + themeStyle + '.svg) no-repeat center',
- 'background-size': '100% 100%'
- });
-
- /**
- * Cookie Tips
- */
- var cookieconsent_status = getCookie("cookieconsent_status");
- if (cookieconsent_status) {
- $('.cookie-tip').removeClass('active');
- } else {
- $('.cookie-tip').addClass('active');
- }
- $('#accept-tos').on('click', function () {
- setCookie("cookieconsent_status", "allow", 365);
- $('.cookie-tip').removeClass('active');
- });
-
- /**
- * Fix table for small screens
- */
- $("table").wrap("<div class='table-area'></div>");
-
-
- /**
- * Responsive Navigation
- */
- $('#menu-toggle').on('click', function (e) {
- var duration = 200;
- nav.slideToggle(duration);
- $(document).on('click', function () {
- nav.slideUp(duration);
- });
- e.stopPropagation();
- });
-
- nav.on('click', function (e) {
- e.stopPropagation();
- });
-
- $(".g-nav li.dropdown").on("click", function () {
- $(".g-nav li.dropdown").not($(this)).children("ul.dropdown-menu").removeClass("show");
- $(".g-nav li.dropdown").not($(this)).children("a.dropdown-toggle").removeClass("show");
- $(this).children("a.dropdown-toggle").toggleClass("show");
- $(this).children("ul.dropdown-menu").toggleClass("show");
- });
- $(document).on("click", function () {
- $(".g-nav li.dropdown").children("a.dropdown-toggle").removeClass("show");
- $(".g-nav li.dropdown").children("ul.dropdown-menu").removeClass("show");
- });
-
- /**
- * Header Bar
- */
- if ($(window).width() > 695) {
- var header = $('.g-header');
- var headerHeight = header.outerHeight();
- var navText = nav.find('a');
- var scFlag = $(document).scrollTop();
- var logo = $('.g-logo');
- var themeStyle = $('.g-banner').attr('data-theme');
-
- $(document).scroll(function () {
- var scrollTop = $(this).scrollTop();
- var navClassName = 'nav-' + themeStyle;
- if (scrollTop > headerHeight) {
- if (scrollTop > 3 * headerHeight) {
- header.addClass('headerUp');
- }
- header.css({
- 'background-color': 'rgba(255, 255, 255, .98)',
- 'box-shadow': '0 1px 12px rgba(0, 0, 0, .08)'
- });
- logo.css({
- 'background': 'url(' + baseurl + '/assets/icons/' + themeStyle + '.svg) no-repeat center',
- 'background-size': '100% 100%'
- });
- navText.addClass('color-f-gray');
- nav.addClass(navClassName);
- } else {
- header.removeClass('headerUp');
- // console.log("rm up");
- $('#bttb').removeClass("active");
- header.css({
- 'background-color': 'transparent',
- 'box-shadow': 'none'
- });
- logo.css({
- 'background': 'url(' + baseurl + '/assets/icons/' + themeStyle + '.svg) no-repeat center',
- 'background-size': '100% 100%'
- });
- navText.removeClass('color-f-gray');
- nav.removeClass(navClassName);
- }
-
- // scroll action
- if (scFlag > scrollTop) {
- header.addClass('headerDown');
- if (header.hasClass('headerUp')) {
- $('#bttb').addClass("active");
- }
- } else {
- header.removeClass('headerDown');
- $('#bttb').removeClass("active");
- }
- scFlag = scrollTop;
- });
- } else {
- var header = $('.g-header');
- var headerHeight = header.outerHeight();
- var scFlag = $(document).scrollTop();
- $(document).scroll(function () {
- var scrollTop = $(this).scrollTop();
-
- if (scrollTop < 100) {
- $('#bttb').removeClass("active");
- }
-
- // scroll action
- if (scFlag > scrollTop && scFlag > 5) {
- $('#bttb').addClass("active");
- } else {
- $('#bttb').removeClass("active");
- }
- scFlag = scrollTop;
- });
- }
-
- /**
- * List for contents
- */
-
- function clickMobileList() {
- $('.table-of-contents').toggleClass("active");
- var mode = getCookie("mode");
- if (mode == "night") {
- $('.mobile-list .icon.list.night').toggleClass('active');
- $('.mobile-list .icon.exit.night').toggleClass('active');
- } else {
- $('.mobile-list .icon.list.day').toggleClass('active');
- $('.mobile-list .icon.exit.day').toggleClass('active');
- }
- }
-
- $('.mobile-list').bind('click', function () {
- clickMobileList();
- });
-
- $(".table-of-contents").on('click', function () {
- clickMobileList();
- });
-
-
- /**
- * Back To Top Button
- */
- $('.bttb').bind('click', function () {
- $('html,body').animate({ scrollTop: 0 }, function () {
- $('#bttb').removeClass("active");
- });
- });
-
- /**
- * Post Cover Resize
- */
- function postCover(img, container) {
- var imgWidth = img.width();
- var containerWidth = container.width();
- var imgHeight = img.height();
- var containerHeight = container.height();
-
- if (imgHeight < containerHeight) {
- img.css({
- 'width': 'auto',
- 'height': '100%'
- });
- imgWidth = img.width();
- containerWidth = container.width();
- var marginLeft = (imgWidth - containerWidth) / 2;
- img.css('margin-left', '-' + marginLeft + 'px');
- } else {
- var marginTop = (containerHeight - imgHeight) / 2;
- img.css('margin-top', marginTop + 'px');
- }
-
- img.fadeIn();
- }
-
- /**
- * The Post Navigator
- */
- $('.read-next-item section').each(function () {
- var n = $(this).height();
- var rn = $('.read-next-item').height();
- $(this).css('margin-top', (rn - n) / 2 + 'px');
- $(this).fadeIn();
- });
-
- $('.read-next-item img').each(function () {
- postCover($(this), $('.read-next-item'));
- // $(this).addClass("lazyload");
- $(this).attr('data-src', $(this).attr('src')).removeAttr('src').addClass("lazyload");
- });
-
- /**
- * Pagination
- */
- function pagination() {
- var total = parseInt($('#total_pages').val());
- var current = parseInt($('#current_pages').val());
- var baseUrl = $('#base_url').val();
- var limit = 3;
-
- var link_html = '';
-
- for (var i = current - limit; i < current; i++) {
- if (i > 0 && i !== 1) {
- link_html += '<a href="' + baseUrl + 'page' + i + '/index.html" class="page-link page-num">' + i + '</a>';
- } else if (i === 1) {
- link_html += '<a href="' + baseUrl + '" class="page-link page-num">' + i + '</a>';
- }
- }
-
- link_html += '<span class="page-link page-num active">' + current + '</span>';
-
- for (var j = current + 1; j <= current + limit; j++) {
- if (j <= total) {
- link_html += '<a href="' + baseUrl + 'page' + j + '/index.html" class="page-link page-num">' + j + '</a>';
- }
- }
-
- $('#page-link-container').html(link_html);
- }
- pagination();
-
- /**
- * Search
- */
- function Search() {
- var self = this;
- var input = $('#search_input');
- var result = $('.search_result');
-
- input.focus(function () {
- $('.icon-search').css('color', '#3199DB');
- result.show();
- });
-
- input.keyup(debounce(this.autoComplete));
-
- $(document).click(function (e) {
- if (e.target.id === 'search_input' || e.target.className === 'search_result' || e.target.className === 'search_item') {
- return;
- }
- $('.icon-search').css('color', '#CAD3DC');
- result.hide();
- });
- }
-
- Search.prototype.autoComplete = function () {
- var keywords = this.value.toLowerCase();
-
- if (keywords.length) {
- $('.icon-search').css('color', '#3199DB');
- } else {
- $('.icon-search').css('color', '#CAD3DC');
- }
-
- var jsonfile = baseurl + '/assets/search.json';
- $.getJSON(jsonfile).done(function (data) {
- var html = '';
- for (var i in data) {
- var item = data[i];
- var title = item.title;
- var tags = item.tags;
- var url = item.url;
-
- var k = title + tags;
- if (keywords !== '' && k.toLowerCase().indexOf(keywords) >= 0) {
- html += '<a class="search_item" href="' + item.url + '">' + item.title + '</a>';
- }
- }
- $('.search_result').html(html);
- });
- };
-
- function debounce(fn, delay) {
- var timer;
- delay = delay || 120;
-
- return function () {
- var ctx = this;
- var args = arguments;
- var later = function () {
- fn.apply(ctx, args);
- };
- clearTimeout(timer);
- timer = setTimeout(later, delay);
- };
- }
-
- new Search();
-
- /**
- * Night mode
- */
- function nightMode() {
- var el = $('body');
- var className = 'night-mode';
-
- var date = new Date();
- var hour = date.getHours();
-
- var mode = getCookie("mode");
- if (mode == "") {
- // console.log(mode);
- if (hour <= 6 || hour >= 18) {
- // console.log("Start night mode");
- setCookie("mode", "night", 1)
- }
- // el.addClass(className);
- }
- }
-
- if ($('#nm-switch').val() === 'true') {
- nightMode();
- }
-
- /**
- * Copy and copyright
- */
- function setClipboardData(str) {
- str += '\n\n著作权归作者所有。\n商业转载请联系作者获得授权,非商业转载请注明出处。\n原文: ' + location.href;
- $('.post-content').on('copy', function (e) {
- var data = window.clipboardData || e.originalEvent.clipboardData;
- data.setData('text/plain', str);
- e.preventDefault();
- });
- }
- $('.post-content').on('mouseup', function (e) {
- var txt = window.getSelection();
- if (txt.toString().length >= 30) {
- setClipboardData(txt);
- }
- });
-
- /**
- * TOC highlight with the corresponding content
- */
- function locateCatelogList() {
- /*获取文章目录集合,可通过:header过滤器*/
- var alis = $('article :header');
- /*获取侧边栏目录列表集合**/
- var sidebar_alis = $('.table-of-contents').find('a');
- /*获取滚动条到顶部的距离*/
- var scroll_height = $(window).scrollTop();
- if (scroll_height > 0) {
- $('.g-header').addClass('headerUp');
- }
- for (var i = 0; i < alis.length; i++) {
- /*获取锚点集合中的元素分别到顶点的距离*/
- var a_height = $(alis[i]).offset().top - 100;
- if (a_height < scroll_height) {
- /*高亮显示*/
- $(sidebar_alis).removeClass('active');
- $(sidebar_alis[i]).addClass('active');
- }
- }
- }
-
- locateCatelogList();
- $(window).bind('scroll', locateCatelogList);
-
- /**
- * Day/Night mode switch button
- */
- function getCookie(cname) {
- var name = cname + "=";
- var ca = document.cookie.split(';');
- for (var i = 0; i < ca.length; i++) {
- var c = ca[i].trim();
- if (c.indexOf(name) === 0) return c.substring(name.length, c.length);
- }
- return "";
- }
-
- function setCookie(cname, cvalue, exdays) {
- var d = new Date();
- d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
- var expires = "expires=" + d.toGMTString();
- if (!baseurl) {
- document.cookie = cname + "=" + cvalue + "; path=/; " + expires;
- } else {
- document.cookie = cname + "=" + cvalue + "; path=" + baseurl + "; " + expires;
- }
- }
-
- var mode = getCookie("mode");
- // console.log(mode);
- if (mode == "night") {
- $(".g-nav li.mode .night").addClass("active");
- $("#mode-toggle .icon-night").addClass("active");
- $("body").addClass("night-mode");
- $(".icon.up.night").toggleClass("active");
- $(".icon.list.night").toggleClass("active");
- } else {
- $(".g-nav li.mode .day").addClass("active");
- $("#mode-toggle .icon-day").addClass("active");
- $("body").removeClass("night-mode");
- $(".icon.up.day").toggleClass("active");
- $(".icon.list.day").toggleClass("active");
- }
-
- function changeMode() {
- var mode = getCookie("mode");
- if (mode == "") {
- setCookie("mode", "night", 1)
- $("body").addClass("night-mode");
- } else if (mode == "day") {
- setCookie("mode", "night", 1)
- $("body").addClass("night-mode");
- } else {
- setCookie("mode", "day", 1)
- $("body").removeClass("night-mode");
- }
- // console.log(mode + "-->" + getCookie("mode"));
- if ($("#disqus_thread").length > 0) {
- DISQUS.reset({
- reload: true
- });
- }
- $(".g-nav li.mode .icon").toggleClass("active");
- $("#mode-toggle .icon").toggleClass("active");
- $(".icon.up.day").toggleClass("active");
- $(".icon.up.night").toggleClass("active");
- if ($('.table-of-contents').css('visibility') == "visible") {
- $(".icon.exit.day").toggleClass("active");
- $(".icon.exit.night").toggleClass("active");
- } else {
- $(".icon.list.day").toggleClass("active");
- $(".icon.list.night").toggleClass("active");
- }
- }
-
- $(".g-nav li.mode").click(function () {
- changeMode();
- });
-
- $("#mode-toggle").click(function () {
- changeMode();
- });
-
- /**
- * Copy code blocks
- */
- // get all <code> elements
- var allCodeBlocksElements = $("pre");
- allCodeBlocksElements.each(function (i) {
- // add different id for each code block
- // target
- var currentId = "codeblock" + (i + 1);
- $(this).attr('id', currentId);
- var lang = $(this).attr("class").split(" ")[1].substring(9).toUpperCase();
-
- if (lang == "ERS") {
- lang = $(this).attr("class").split(" ")[0].substring(9).toUpperCase();
- if (lang == "MERMAID2") {
- text = $(this).text();
- $(this).before('<summary class="render-expand" aria-haspopup="dialog" role="button"><svg width="16" height="16" viewBox="0 0 16 16" fill="currentColor" class="octicon" style="display:inline-block;vertical-align:text-bottom"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 1.06L2.56 7h10.88l-2.22-2.22a.75.75 0 011.06-1.06l3.5 3.5a.75.75 0 010 1.06l-3.5 3.5a.75.75 0 11-1.06-1.06l2.22-2.22H2.56l2.22 2.22a.75.75 0 11-1.06 1.06l-3.5-3.5a.75.75 0 010-1.06l3.5-3.5z"></path></svg></summary>');
- $(this).after('<div class="mermaid2">' + text + '</div>');
- } else {
- $(this).wrap('<div class="highlight"></div>');
- $(this).parent().wrap('<div class="' + $(this).attr("class").split(" ")[0] + ' highlighter-rouge"></div>');
- $(this).addClass("highlight");
- //trigger
- var clipButton = '<div class="copy-container"><span class="lang">' + lang + '</span><button class="btn" data-bs-original-title="Copy" aria-label="Copy" data-clipboard-target="#' + currentId + '"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-copy"></use></svg><span class="tooltip unfinish">Copy</span><span class="tooltip finish">Copied</span></button></div>';
- $(this).before(clipButton);
- }
- } else {
- //trigger
- var clipButton = '<div class="copy-container"><span class="lang">' + lang + '</span><button class="btn" data-bs-original-title="Copy" aria-label="Copy" data-clipboard-target="#' + currentId + '"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-copy"></use></svg><span class="tooltip unfinish">Copy</span><span class="tooltip finish">Copied</span></button></div>';
- $(this).before(clipButton);
- }
- });
-
- var clipboard = new ClipboardJS('.btn');
- clipboard.on('success', function (e) {
- e.clearSelection();
- });
-
- $(".markdown-body .btn").hover(function () {
- $(this).find(".tooltip.unfinish").addClass("active");
- }, function () {
- $(this).find(".tooltip.unfinish").removeClass("active");
- });
-
- $(".markdown-body .btn").click(function () {
- $(this).find(".tooltip.unfinish").removeClass("active");
- var finish = $(this).find(".tooltip.finish")
- finish.addClass("active");
- setTimeout(function () {
- finish.removeClass("active");
- }, 500);
- });
-
- /**
- * Expand the mermaid figure
- */
- $("summary").click(function (event) {
- var text = $(this).next().children().text();
- $(".modal .modal-content .container").html('<div class="mermaid2">' + text + '</div>')
- mermaid.init(undefined, $('.modal .modal-content .mermaid2'));
- $('.modal').css("visibility", "visible");
- $(".modal .modal-content").click(function (event) {
- if (event.target.classList.contains("close")) {
- $(".modal").css("visibility", "hidden");
- }
- event.stopPropagation();
- });
- event.stopPropagation();
- });
-
- $(document).click(function () {
- $(".modal").css("visibility", "hidden");
- });
-
- /**
- * Error image loading
- */
- document.addEventListener('error', function (e) {
- if (e.target.nodeName == 'IMG') { e.target.src = baseurl + '/assets/img/placeholder.webp'; }
- }, true);
-
- /**
- * Alive time
- */
-
- var alivetime_days = $(".alivetime_days")
- var alivetime_hours = $(".alivetime_hours")
- var alivetime_minutes = $(".alivetime_minutes")
- var alivetime_seconds = $(".alivetime_seconds")
- function alive_time() {
- var alivestart = $("meta[name='alivestart']").attr('content');
- window.setTimeout(alive_time, 1000);
- // Start at
- BirthDay = new Date(alivestart);
- // Now at
- today = new Date();
- timeold = (today.getTime() - BirthDay.getTime());
- secondsold = Math.floor(timeold / 1000);
- e_daysold = timeold / (24 * 60 * 60 * 1000);
- daysold = Math.floor(e_daysold);
- e_hrsold = (e_daysold - daysold) * 24;
- hrsold = Math.floor(e_hrsold);
- e_minsold = (e_hrsold - hrsold) * 60;
- minsold = Math.floor(e_minsold)
- seconds = Math.floor((e_minsold - minsold) * 60);
- alivetime_days.html(daysold)
- alivetime_hours.html(hrsold)
- alivetime_minutes.html(minsold)
- alivetime_seconds.html(seconds)
- // alivetime.html(daysold + " 天 " + hrsold + " 小时 " + minsold + " 分 " + seconds + " 秒");
- }
- alive_time();
-
-});
-
-
-/***/ }),
-
-/***/ "./dev/sass/app.scss":
-/*!***************************!*\
- !*** ./dev/sass/app.scss ***!
- \***************************/
-/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
-
-"use strict";
-__webpack_require__.r(__webpack_exports__);
-// extracted by mini-css-extract-plugin
-
-
-/***/ })
-
-/******/ });
-/************************************************************************/
-/******/ // The module cache
-/******/ var __webpack_module_cache__ = {};
-/******/
-/******/ // The require function
-/******/ function __webpack_require__(moduleId) {
-/******/ // Check if module is in cache
-/******/ var cachedModule = __webpack_module_cache__[moduleId];
-/******/ if (cachedModule !== undefined) {
-/******/ return cachedModule.exports;
-/******/ }
-/******/ // Create a new module (and put it into the cache)
-/******/ var module = __webpack_module_cache__[moduleId] = {
-/******/ // no module.id needed
-/******/ // no module.loaded needed
-/******/ exports: {}
-/******/ };
-/******/
-/******/ // Execute the module function
-/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
-/******/
-/******/ // Return the exports of the module
-/******/ return module.exports;
-/******/ }
-/******/
-/************************************************************************/
-/******/ /* webpack/runtime/compat get default export */
-/******/ (() => {
-/******/ // getDefaultExport function for compatibility with non-harmony modules
-/******/ __webpack_require__.n = (module) => {
-/******/ var getter = module && module.__esModule ?
-/******/ () => (module['default']) :
-/******/ () => (module);
-/******/ __webpack_require__.d(getter, { a: getter });
-/******/ return getter;
-/******/ };
-/******/ })();
-/******/
-/******/ /* webpack/runtime/define property getters */
-/******/ (() => {
-/******/ // define getter functions for harmony exports
-/******/ __webpack_require__.d = (exports, definition) => {
-/******/ for(var key in definition) {
-/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
-/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
-/******/ }
-/******/ }
-/******/ };
-/******/ })();
-/******/
-/******/ /* webpack/runtime/hasOwnProperty shorthand */
-/******/ (() => {
-/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
-/******/ })();
-/******/
-/******/ /* webpack/runtime/make namespace object */
-/******/ (() => {
-/******/ // define __esModule on exports
-/******/ __webpack_require__.r = (exports) => {
-/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
-/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
-/******/ }
-/******/ Object.defineProperty(exports, '__esModule', { value: true });
-/******/ };
-/******/ })();
-/******/
-/************************************************************************/
-var __webpack_exports__ = {};
-// This entry need to be wrapped in an IIFE because it need to be in strict mode.
-(() => {
-"use strict";
-/*!********************!*\
- !*** ./dev/app.js ***!
- \********************/
-__webpack_require__.r(__webpack_exports__);
-/* harmony import */ var _js_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./js/index.js */ "./dev/js/index.js");
-/* harmony import */ var _js_index_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_js_index_js__WEBPACK_IMPORTED_MODULE_0__);
-/* harmony import */ var _sass_app_scss__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./sass/app.scss */ "./dev/sass/app.scss");
-
-
-})();
-
-/******/ })()
-;
-//# sourceMappingURL=app.min.js.map
+(()=>{var t={774:()=>{$(document).ready((function(){document.body.addEventListener("touchstart",(function(){}),{passive:!0});var t=$(".g-nav"),e=$("meta[property='og:baseurl']").attr("content"),a=$("meta[property='og:lang']").attr("content"),o=$(".g-logo"),n=$(".g-banner").attr("data-theme");if(o.css({background:"url("+e+"/assets/icons/"+n+".svg) no-repeat center","background-size":"100% 100%"}),u("cookieconsent_status")?$(".cookie-tip").removeClass("active"):$(".cookie-tip").addClass("active"),$("#accept-tos").on("click",(function(){p("cookieconsent_status","allow",365),$(".cookie-tip").removeClass("active")})),$("table").wrap("<div class='table-area'></div>"),$("#menu-toggle").on("click",(function(e){t.slideToggle(200),$(document).on("click",(function(){t.slideUp(200)})),e.stopPropagation()})),t.on("click",(function(t){t.stopPropagation()})),$(".g-nav li.dropdown").on("click",(function(){$(".g-nav li.dropdown").not($(this)).children("ul.dropdown-menu").removeClass("show"),$(".g-nav li.dropdown").not($(this)).children("a.dropdown-toggle").removeClass("show"),$(this).children("a.dropdown-toggle").toggleClass("show"),$(this).children("ul.dropdown-menu").toggleClass("show")})),$(document).on("click",(function(){$(".g-nav li.dropdown").children("a.dropdown-toggle").removeClass("show"),$(".g-nav li.dropdown").children("ul.dropdown-menu").removeClass("show")})),$(window).width()>695){var s=(c=$(".g-header")).outerHeight(),i=t.find("a"),l=$(document).scrollTop();o=$(".g-logo"),n=$(".g-banner").attr("data-theme"),$(document).scroll((function(){var a=$(this).scrollTop(),r="nav-"+n;a>s?(a>3*s&&c.addClass("headerUp"),c.css({"background-color":"rgba(255, 255, 255, .98)","box-shadow":"0 1px 12px rgba(0, 0, 0, .08)"}),o.css({background:"url("+e+"/assets/icons/"+n+".svg) no-repeat center","background-size":"100% 100%"}),i.addClass("color-f-gray"),t.addClass(r)):(c.removeClass("headerUp"),$("#bttb").removeClass("active"),c.css({"background-color":"transparent","box-shadow":"none"}),o.css({background:"url("+e+"/assets/icons/"+n+".svg) no-repeat center","background-size":"100% 100%"}),i.removeClass("color-f-gray"),t.removeClass(r)),l>a?(c.addClass("headerDown"),c.hasClass("headerUp")&&$("#bttb").addClass("active")):(c.removeClass("headerDown"),$("#bttb").removeClass("active")),l=a}))}else{var c;s=(c=$(".g-header")).outerHeight(),l=$(document).scrollTop(),$(document).scroll((function(){var t=$(this).scrollTop();t<100&&$("#bttb").removeClass("active"),l>t&&l>5?$("#bttb").addClass("active"):$("#bttb").removeClass("active"),l=t}))}function r(){$(".table-of-contents").toggleClass("active"),$("#tools .tool.toc .b1").toggleClass("active"),$("#tools .tool.toc .b2").toggleClass("active"),$(".submenu").removeClass("active"),$("#tools .tool.collection .b1").addClass("active"),$("#tools .tool.collection .b2").removeClass("active")}function d(){$(".submenu").toggleClass("active"),$("#tools .tool.collection .b1").toggleClass("active"),$("#tools .tool.collection .b2").toggleClass("active"),$(".table-of-contents").removeClass("active"),$("#tools .tool.toc .b1").addClass("active"),$("#tools .tool.toc .b2").removeClass("active")}function h(){var t,e,a,o=$("#search_input"),n=$(".search_result");o.focus((function(){$(".icon-search").css("color","#3199DB"),n.show()})),o.keyup((t=this.autoComplete,e=e||120,function(){var o=this,n=arguments;clearTimeout(a),a=setTimeout((function(){t.apply(o,n)}),e)})),$(document).click((function(t){"search_input"!==t.target.id&&"search_result"!==t.target.className&&"search_item"!==t.target.className&&($(".icon-search").css("color","#CAD3DC"),n.hide())}))}function g(){var t=$("article :header"),e=$(".table-of-contents").find("a"),a=$(window).scrollTop();a>0&&$(".g-header").addClass("headerUp");for(var o=0;o<t.length;o++)$(t[o]).offset().top-100<a&&($(e).removeClass("active"),$(e[o]).addClass("active"))}function u(t){for(var e=t+"=",a=document.cookie.split(";"),o=0;o<a.length;o++){var n=a[o].trim();if(0===n.indexOf(e))return n.substring(e.length,n.length)}return""}function p(t,a,o){var n=new Date;n.setTime(n.getTime()+24*o*60*60*1e3);var s="expires="+n.toGMTString();document.cookie=e?t+"="+a+"; path="+e+"; "+s:t+"="+a+"; path=/; "+s}function m(){var t=u("mode");""==t||"day"==t?(p("mode","night",1),$("body").addClass("night-mode")):(p("mode","day",1),$("body").removeClass("night-mode")),$("#disqus_thread").length>0&&DISQUS.reset({reload:!0}),$(".g-nav li.mode .icon").toggleClass("active"),$("#mode-toggle .icon").toggleClass("active"),$(".icon.up.day").toggleClass("active"),$(".icon.up.night").toggleClass("active"),"visible"==$(".table-of-contents").css("visibility")?($(".icon.exit.day").toggleClass("active"),$(".icon.exit.night").toggleClass("active")):($(".icon.list.day").toggleClass("active"),$(".icon.list.night").toggleClass("active"))}$("#tools .tool.toc").bind("click",(function(){r()})),$("#tools .tool.collection").bind("click",(function(){d()})),$(".table-of-contents").on("click",(function(){r()})),$(".submenu").on("click",(function(){d()})),$(".bttb").bind("click",(function(){$("html,body").animate({scrollTop:0},(function(){$("#bttb").removeClass("active")}))})),$(".read-next-item section").each((function(){var t=$(this).height(),e=$(".read-next-item").height();$(this).css("margin-top",(e-t)/2+"px"),$(this).fadeIn()})),$(".read-next-item img").each((function(){!function(t,e){t.width(),e.width();var a=t.height(),o=e.height();if(a<o){t.css({width:"auto",height:"100%"});var n=(t.width()-e.width())/2;t.css("margin-left","-"+n+"px")}else{var s=(o-a)/2;t.css("margin-top",s+"px")}t.fadeIn()}($(this),$(".read-next-item")),$(this).attr("data-src",$(this).attr("src")).removeAttr("src").addClass("lazyload")})),function(){for(var t=parseInt($("#total_pages").val()),e=parseInt($("#current_pages").val()),a=$("#base_url").val(),o="",n=e-3;n<e;n++)n>0&&1!==n?o+='<a href="'+a+"page"+n+'/index.html" class="page-link page-num">'+n+"</a>":1===n&&(o+='<a href="'+a+'" class="page-link page-num">'+n+"</a>");o+='<span class="page-link page-num active">'+e+"</span>";for(var s=e+1;s<=e+3;s++)s<=t&&(o+='<a href="'+a+"page"+s+'/index.html" class="page-link page-num">'+s+"</a>");$("#page-link-container").html(o)}(),h.prototype.autoComplete=function(){var t=this.value.toLowerCase();t.length?$(".icon-search").css("color","#3199DB"):$(".icon-search").css("color","#CAD3DC");var a=e+"/assets/search.json";$.getJSON(a).done((function(e){var a="";for(var o in e){var n=e[o],s=n.title,i=n.tags;n.url,""!==t&&(s+i).toLowerCase().indexOf(t)>=0&&(a+='<a class="search_item" href="'+n.url+'">'+n.title+"</a>")}$(".search_result").html(a)}))},new h,"true"===$("#nm-switch").val()&&function(){$("body");var t=(new Date).getHours();""==u("mode")&&(t<=6||t>=18)&&p("mode","night",1)}(),$(".post-content").on("mouseup",(function(t){var e,a=window.getSelection();a.toString().length>=30&&(e=a,e+="\n\n著作权归作者所有。\n商业转载请联系作者获得授权,非商业转载请注明出处。\n原文: "+location.href,$(".post-content").on("copy",(function(t){(window.clipboardData||t.originalEvent.clipboardData).setData("text/plain",e),t.preventDefault()})))})),g(),$(window).bind("scroll",g),"night"==u("mode")?($(".g-nav li.mode .night").addClass("active"),$("#mode-toggle .icon-night").addClass("active"),$("body").addClass("night-mode"),$(".icon.up.night").toggleClass("active"),$(".icon.list.night").toggleClass("active")):($(".g-nav li.mode .day").addClass("active"),$("#mode-toggle .icon-day").addClass("active"),$("body").removeClass("night-mode"),$(".icon.up.day").toggleClass("active"),$(".icon.list.day").toggleClass("active")),$(".g-nav li.mode").click((function(){m()})),$("#mode-toggle").click((function(){m()})),$("pre").each((function(t){var e="codeblock"+(t+1);$(this).attr("id",e);var a=$(this).attr("class").split(" ")[1].substring(9).toUpperCase();if("ERS"==a)if("MERMAID2"==(a=$(this).attr("class").split(" ")[0].substring(9).toUpperCase()))text=$(this).text(),$(this).before('<summary class="render-expand" aria-haspopup="dialog" role="button"><svg width="16" height="16" viewBox="0 0 16 16" fill="currentColor" class="octicon" style="display:inline-block;vertical-align:text-bottom"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 1.06L2.56 7h10.88l-2.22-2.22a.75.75 0 011.06-1.06l3.5 3.5a.75.75 0 010 1.06l-3.5 3.5a.75.75 0 11-1.06-1.06l2.22-2.22H2.56l2.22 2.22a.75.75 0 11-1.06 1.06l-3.5-3.5a.75.75 0 010-1.06l3.5-3.5z"></path></svg></summary>'),$(this).after('<div class="mermaid2">'+text+"</div>");else{$(this).wrap('<div class="highlight"></div>'),$(this).parent().wrap('<div class="'+$(this).attr("class").split(" ")[0]+' highlighter-rouge"></div>'),$(this).addClass("highlight");var o='<div class="copy-container"><span class="lang">'+a+'</span><button class="btn" data-bs-original-title="Copy" aria-label="Copy" data-clipboard-target="#'+e+'"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-copy"></use></svg><span class="tooltip unfinish">Copy</span><span class="tooltip finish">Copied</span></button></div>';$(this).before(o)}else o='<div class="copy-container"><span class="lang">'+a+'</span><button class="btn" data-bs-original-title="Copy" aria-label="Copy" data-clipboard-target="#'+e+'"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-copy"></use></svg><span class="tooltip unfinish">Copy</span><span class="tooltip finish">Copied</span></button></div>',$(this).before(o)})),new ClipboardJS(".btn").on("success",(function(t){t.clearSelection()})),$(".markdown-body .btn").hover((function(){$(this).find(".tooltip.unfinish").addClass("active")}),(function(){$(this).find(".tooltip.unfinish").removeClass("active")})),$(".markdown-body .btn").click((function(){$(this).find(".tooltip.unfinish").removeClass("active");var t=$(this).find(".tooltip.finish");t.addClass("active"),setTimeout((function(){t.removeClass("active")}),500)})),$("summary").click((function(t){var e=$(this).next().children().text();$(".modal .modal-content .container").html('<div class="mermaid2">'+e+"</div>"),mermaid.init(void 0,$(".modal .modal-content .mermaid2")),$(".modal").css("visibility","visible"),$(".modal .modal-content").click((function(t){t.target.classList.contains("close")&&$(".modal").css("visibility","hidden"),t.stopPropagation()})),t.stopPropagation()})),$(document).click((function(){$(".modal").css("visibility","hidden")})),document.addEventListener("error",(function(t){"IMG"==t.target.nodeName&&(t.target.src=e+"/assets/img/placeholder.webp")}),!0);var v=$(".alivetime_days"),f=$(".alivetime_hours"),b=$(".alivetime_minutes"),y=$(".alivetime_seconds");if(function t(){var e=$("meta[name='alivestart']").attr("content");window.setTimeout(t,1e3),BirthDay=new Date(e),today=new Date,timeold=today.getTime()-BirthDay.getTime(),secondsold=Math.floor(timeold/1e3),e_daysold=timeold/864e5,daysold=Math.floor(e_daysold),e_hrsold=24*(e_daysold-daysold),hrsold=Math.floor(e_hrsold),e_minsold=60*(e_hrsold-hrsold),minsold=Math.floor(e_minsold),seconds=Math.floor(60*(e_minsold-minsold)),v.html(daysold),f.html(hrsold),b.html(minsold),y.html(seconds)}(),today=new Date,year=today.getFullYear(),month=today.getMonth()+1,day=today.getDate(),endDay=year+"-"+("0"+month).slice(-2)+"-"+("0"+day).slice(-2),locales={"zh-Hans":"zh","zh-Hant":"zh-tw",en:"en",ja:"ja"},$("#cal-heatmap").length>0){const t=new CalHeatmap;axios.get(e+"/stats.json").then((e=>{stats_data=e.data,t.paint({itemSelector:"#cal-heatmap",domain:{type:"month",gutter:5,label:{text:"MMM",textAlign:"start",position:"top"}},subDomain:{type:"ghDay",gutter:5,width:13,height:13,radius:3,label:null},date:{start:new Date(dayjs(endDay).subtract(2,"month")),max:new Date(endDay),highlight:[new Date(endDay)],locale:locales[a]},range:3,data:{source:stats_data.calendar,x:"date",y:"count"},scale:{color:{type:"threshold",range:["#9be9a8","#40c463","#30a14e","#216e39"],domain:[4,6,8]}}},[[Tooltip,{text:function(t,e,a){return 1==e?e+" contribution on "+a.format("YYYY-MM-DD"):(e?e+" contributions":"No contribution")+" on "+a.format("YYYY-MM-DD")}}],[LegendLite,{includeBlank:!0,itemSelector:"#ex-ghDay-legend",radius:3,width:10,height:10,gutter:2}],[CalendarLabel,{width:30,textAlign:"start",text:()=>dayjs.weekdaysShort().map(((t,e)=>e%2==0?"":t)),padding:[25,0,0,0]}]]),$("#ex-ghDay-prev").on("click",(function(e){e.preventDefault(),t.previous()})),$("#ex-ghDay-next").on("click",(function(e){e.preventDefault(),t.next()})),$("#ex-ghDay-today").on("click",(function(e){e.preventDefault(),t.jumpTo(new Date(endDay))}))}))}if($("#archive-heatmap").length>0){postWidth=$(".post-content").width(),postWidth>=633?month=12:postWidth>=400?month=8:postWidth>=300?month=6:month=3;const t=new CalHeatmap;axios.get(e+"/stats.json").then((e=>{stats_data=e.data,t.paint({itemSelector:"#archive-heatmap",domain:{type:"month",gutter:2,label:{text:"MMM",textAlign:"start",position:"top"}},subDomain:{type:"ghDay",gutter:2,width:9,height:9,radius:2},date:{start:new Date(dayjs(endDay).subtract(month-1,"month")),max:new Date(endDay),highlight:[new Date(endDay)],locale:locales[a]},range:month,data:{source:stats_data.calendar,x:"date",y:"count"},scale:{color:{type:"threshold",range:["#9be9a8","#40c463","#30a14e","#216e39"],domain:[4,6,8]}}},[[Tooltip,{text:function(t,e,a){return 1==e?e+" contribution on "+a.format("YYYY-MM-DD"):(e?e+" contributions":"No contribution")+" on "+a.format("YYYY-MM-DD")}}],[LegendLite,{includeBlank:!0,itemSelector:"#ex-ghDay-legend2",radius:3,width:10,height:10,gutter:2}],[CalendarLabel,{width:30,textAlign:"start",text:()=>dayjs.weekdaysShort().map(((t,e)=>e%2==0?"":t)),padding:[25,0,0,0]}]]),$("#ex-ghDay-prev2").on("click",(function(e){e.preventDefault(),t.previous()})),$("#ex-ghDay-next2").on("click",(function(e){e.preventDefault(),t.next()})),$("#ex-ghDay-today2").on("click",(function(e){e.preventDefault(),t.jumpTo(new Date(endDay))}))}))}}))}},e={};function a(o){var n=e[o];if(void 0!==n)return n.exports;var s=e[o]={exports:{}};return t[o](s,s.exports,a),s.exports}a.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return a.d(e,{a:e}),e},a.d=(t,e)=>{for(var o in e)a.o(e,o)&&!a.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:e[o]})},a.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),(()=>{"use strict";a(774)})()})();
\ No newline at end of file