code
stringlengths
1
1.05M
repo_name
stringlengths
6
83
path
stringlengths
3
242
language
stringclasses
222 values
license
stringclasses
20 values
size
int64
1
1.05M
local zsetKeys = KEYS local totalDeleted = 0 for _, zsetKey in ipairs(zsetKeys) do local cursor = 0 repeat local result = redis.call('ZSCAN', zsetKey, cursor, 'COUNT', 100) cursor = tonumber(result[1]) local members = result[2] for i = 1, #members, 2 do local memberKey = members[i] if redis.call('EXISTS', memberKey) == 0 then redis.call('ZREM', zsetKey, memberKey) totalDeleted = totalDeleted + 1 end end until cursor == 0 end return totalDeleted
2401_82379797/DGA-Pool
src/main/resources/lua/cleanup_zset.lua
Lua
mit
573
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>线程池监控中心</title> <link rel="icon" type="image/png" href="/logo/logo1.png"> <script src="https://cdn.tailwindcss.com"></script> <link href="https://cdn.jsdelivr.net/npm/font-awesome@4.7.0/css/font-awesome.min.css" rel="stylesheet"> <script src="https://cdn.jsdelivr.net/npm/chart.js@4.4.8/dist/chart.umd.min.js"></script> <script> tailwind.config = { theme: { extend: { colors: { primary: '#165DFF', success: '#52C41A', warning: '#FAAD14', danger: '#FF4D4F', info: '#1890FF', 'time-wait': '#FF5252' }, fontFamily: { inter: ['Inter', 'sans-serif'] } } } } </script> <style type="text/tailwindcss"> @layer utilities { .stat-card { @apply bg-white rounded-lg p-4 shadow-sm hover:shadow-md transition-all; } .config-card { @apply bg-white rounded-lg p-5 shadow-sm border border-gray-100 mb-6; } .info-card { @apply bg-white rounded-lg p-5 shadow-sm border border-gray-100; } .nav-active { @apply text-primary border-primary font-medium; } .badge { @apply text-xs px-2 py-1 rounded-full font-medium; } .form-input { @apply w-full rounded-md border-gray-300 shadow-sm focus:border-primary focus:ring-primary/20 transition; } .form-select { @apply w-full rounded-md border-gray-300 shadow-sm focus:border-primary focus:ring-primary/20 transition bg-white; } .form-label { @apply block text-sm font-medium text-gray-700 mb-1; } .scrollable-table { @apply overflow-x-auto max-h-[400px] overflow-y-auto; } .ws-status-normal { @apply bg-success/10 text-success; } .ws-status-reconnect { @apply bg-warning/10 text-warning; } .ws-status-error { @apply bg-danger/10 text-danger; } } </style> </head> <body class="bg-gray-50 font-inter min-h-screen"> <header class="bg-white sticky top-0 z-50 shadow-sm"> <div class="container mx-auto px-4 py-4 flex flex-col md:flex-row justify-between items-center"> <div class="flex items-center space-x-2 mb-4 md:mb-0"> <img src="/logo/logo1.png" alt="线程池监控中心logo" class="h-8 w-8"> <h1 class="text-xl font-bold text-gray-800">线程池监控中心</h1> </div> <nav class="hidden md:flex items-center space-x-8"> <a href="javascript:;" id="nav-monitor" class="nav-active border-b-2 px-1 py-2 transition-colors"> <i class="fa fa-dashboard mr-1"></i> 监控页 </a> <a href="javascript:;" id="nav-config" class="text-gray-600 border-b-2 border-transparent hover:text-primary px-1 py-2 transition-colors"> <i class="fa fa-cog mr-1"></i> 配置页 </a> </nav> <div class="flex items-center space-x-3 flex-wrap"> <span id="ws-status" class="badge ws-status-reconnect flex items-center"> <i class="fa fa-circle-o-notch fa-spin mr-1"></i> WS连接中... </span> <span class="text-sm text-gray-500 flex items-center"> <i class="fa fa-signal mr-1 text-primary"></i> <span id="last-ws-msg">未接收消息</span> </span> <button id="refresh-btn" class="bg-primary hover:bg-primary/90 text-white px-3 py-1.5 rounded-md text-sm flex items-center transition"> <i class="fa fa-refresh mr-1"></i> 刷新配置 </button> </div> <button class="md:hidden text-gray-600 hover:text-primary ml-auto" id="mobile-menu-btn"> <i class="fa fa-bars text-xl"></i> </button> </div> <div class="md:hidden hidden px-4 pb-4" id="mobile-menu"> <a href="javascript:;" id="mobile-nav-monitor" class="nav-active block px-2 py-2 rounded-md mb-2"> <i class="fa fa-dashboard mr-1"></i> 监控页 </a> <a href="javascript:;" id="mobile-nav-config" class="text-gray-600 hover:text-primary block px-2 py-2 rounded-md mb-2"> <i class="fa fa-cog mr-1"></i> 配置页 </a> <span id="mobile-ws-status" class="badge ws-status-reconnect flex items-center px-2 mt-1"> <i class="fa fa-circle-o-notch fa-spin mr-1"></i> WS连接中... </span> <span class="text-xs text-gray-500 flex items-center px-2 mt-1"> <i class="fa fa-signal mr-1 text-primary"></i> <span id="mobile-last-ws-msg">未接收消息</span> </span> </div> </header> <main class="container mx-auto px-4 py-6"> <div id="monitor-page" class="block"> <div class="info-card mb-6"> <div class="flex flex-col md:flex-row md:items-center justify-between"> <div> <h2 class="text-xl font-bold text-gray-800 mb-1" id="pool-name">-</h2> <p class="text-gray-500 text-sm">线程命名: <span id="thread-name" class="font-medium">-</span></p> </div> <div class="flex flex-wrap gap-2 mt-3 md:mt-0"> <span class="badge bg-blue-100 text-blue-800" id="queue-info">队列加载中...</span> <span class="badge bg-purple-100 text-purple-800" id="reject-strategy">-</span> <span id="daemon-badge" class="badge bg-gray-100 text-gray-800">-</span> <span id="core-destroy-badge" class="badge bg-gray-100 text-gray-800">-</span> </div> </div> </div> <div class="grid grid-cols-1 md:grid-cols-4 gap-4 mb-6"> <div class="stat-card border-l-4 border-primary"> <div class="text-sm text-gray-500">核心线程数</div> <div class="text-2xl font-bold mt-1" id="core-nums">-</div> </div> <div class="stat-card border-l-4 border-info"> <div class="text-sm text-gray-500">最大线程数</div> <div class="text-2xl font-bold mt-1" id="max-nums">-</div> </div> <div class="stat-card border-l-4 border-warning"> <div class="text-sm text-gray-500">队列任务数(总)</div> <div class="text-2xl font-bold mt-1" id="queue-size">-</div> <div class="mt-1 text-xs text-gray-400">容量: <span id="queue-capacity">-</span></div> </div> <div class="stat-card border-l-4 border-primary/70"> <div class="text-sm text-gray-500">空闲时间(ms)</div> <div class="text-2xl font-bold mt-1" id="alive-time">-</div> </div> </div> <div class="info-card mb-6"> <h3 class="text-lg font-semibold mb-4 flex items-center"> <i class="fa fa-line-chart text-primary mr-2"></i> 线程状态趋势 </h3> <div class="h-80"> <canvas id="thread-trend-chart"></canvas> </div> <div class="mt-3 flex flex-wrap gap-3 text-xs text-gray-500"> <div class="flex items-center"><span class="w-3 h-3 rounded-full bg-success inline-block mr-1"></span> 运行中</div> <div class="flex items-center"><span class="w-3 h-3 rounded-full bg-warning inline-block mr-1"></span> 阻塞中</div> <div class="flex items-center"><span class="w-3 h-3 rounded-full bg-info inline-block mr-1"></span> 等待中</div> <div class="flex items-center"><span class="w-3 h-3 rounded-full bg-time-wait inline-block mr-1"></span> 限时等待</div> </div> </div> <div class="info-card mb-6"> <h3 class="text-lg font-semibold mb-4 flex items-center"> <i class="fa fa-list-alt text-primary mr-2"></i> 线程状态详情 </h3> <div class="overflow-x-auto"> <table class="min-w-full divide-y divide-gray-200"> <thead class="bg-gray-50"> <tr> <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase">线程类型</th> <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase">运行中</th> <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase">阻塞中</th> <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase">等待中</th> <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase">限时等待</th> <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase">总数</th> </tr> </thead> <tbody class="bg-white divide-y divide-gray-200"> <tr id="core-thread-row"> <td class="px-4 py-3 text-sm font-medium text-primary">核心线程</td> <td class="px-4 py-3 text-sm text-gray-500 core-run">0</td> <td class="px-4 py-3 text-sm text-gray-500 core-block">0</td> <td class="px-4 py-3 text-sm text-gray-500 core-wait">0</td> <td class="px-4 py-3 text-sm text-gray-500 core-timewait">0</td> <td class="px-4 py-3 text-sm font-medium text-gray-900 core-total">0</td> </tr> <tr id="extra-thread-row"> <td class="px-4 py-3 text-sm font-medium text-info">额外线程</td> <td class="px-4 py-3 text-sm text-gray-500 extra-run">0</td> <td class="px-4 py-3 text-sm text-gray-500 extra-block">0</td> <td class="px-4 py-3 text-sm text-gray-500 extra-wait">0</td> <td class="px-4 py-3 text-sm text-gray-500 extra-timewait">0</td> <td class="px-4 py-3 text-sm font-medium text-gray-900 extra-total">0</td> </tr> <tr class="bg-gray-50"> <td class="px-4 py-3 text-sm font-bold text-gray-700">总计</td> <td class="px-4 py-3 text-sm font-medium text-gray-700 total-run">0</td> <td class="px-4 py-3 text-sm font-medium text-gray-700 total-block">0</td> <td class="px-4 py-3 text-sm font-medium text-gray-700 total-wait">0</td> <td class="px-4 py-3 text-sm font-medium text-gray-700 total-timewait">0</td> <td class="px-4 py-3 text-sm font-bold text-gray-700 total-all">0</td> </tr> </tbody> </table> </div> </div> <div class="info-card"> <h3 class="text-lg font-semibold mb-4 flex items-center"> <i class="fa fa-th-list text-primary mr-2"></i> 分区任务数量 <span class="ml-2 text-sm text-gray-500">(共 <span id="partition-total">0</span> 个分区)</span> </h3> <div class="scrollable-table"> <table class="min-w-full divide-y divide-gray-200"> <thead class="bg-gray-50 sticky top-0 z-10"> <tr> <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase">分区ID</th> <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase">任务数量</th> </tr> </thead> <tbody id="partition-tbody" class="bg-white divide-y divide-gray-200"> <tr><td class="px-4 py-3 text-sm text-gray-500" colspan="2">等待WS推送分区数据...</td></tr> </tbody> </table> </div> </div> </div> <div id="config-page" class="hidden"> <div class="bg-blue-50 border-l-4 border-primary p-4 mb-6 rounded-r"> <div class="flex"> <i class="fa fa-lightbulb-o text-primary mt-0.5"></i> <p class="ml-3 text-sm text-blue-700"> 注意:修改配置会实时生效,核心线程数不能大于最大线程数;队列和拒绝策略从下拉列表选择 </p> </div> </div> <div id="config-msg" class="hidden mb-6 p-4 rounded-md flex items-center"> <i id="msg-icon" class="mr-3 text-xl"></i> <span id="msg-text"></span> <button id="close-msg" class="ml-auto text-gray-500 hover:text-gray-700"> <i class="fa fa-times"></i> </button> </div> <div class="config-card"> <h2 class="text-xl font-bold text-gray-800 mb-4 flex items-center"> <i class="fa fa-sliders text-primary mr-2"></i> 线程参数 </h2> <form id="worker-form" class="space-y-6"> <div class="grid grid-cols-1 md:grid-cols-3 gap-6"> <div> <label for="core-nums-cfg" class="form-label">核心线程数</label> <input type="number" id="core-nums-cfg" name="coreNums" min="1" class="form-input px-3 py-2" required> </div> <div> <label for="max-nums-cfg" class="form-label">最大线程数</label> <input type="number" id="max-nums-cfg" name="maxNums" min="1" class="form-input px-3 py-2" required> </div> <div> <label for="alive-time-cfg" class="form-label">空闲时间(毫秒)</label> <input type="number" id="alive-time-cfg" name="aliveTime" min="0" class="form-input px-3 py-2" required> </div> <div class="flex items-center"> <input type="checkbox" id="core-destroy-cfg" name="coreDestroy" class="h-4 w-4 text-primary focus:ring-primary"> <label for="core-destroy-cfg" class="ml-2 text-sm text-gray-700">允许核心线程销毁</label> </div> <div class="flex items-center"> <input type="checkbox" id="is-daemon-cfg" name="isDaemon" class="h-4 w-4 text-primary focus:ring-primary"> <label for="is-daemon-cfg" class="ml-2 text-sm text-gray-700">使用守护线程</label> </div> </div> <div class="flex justify-end"> <button type="button" id="reset-worker" class="mr-3 px-4 py-2 border border-gray-300 rounded-md text-sm text-gray-700 hover:bg-gray-50 transition">重置</button> <button type="submit" class="px-4 py-2 bg-primary text-white rounded-md text-sm hover:bg-primary/90 transition"> <i class="fa fa-save mr-1"></i> 保存 </button> </div> </form> </div> <div class="config-card"> <h2 class="text-xl font-bold text-gray-800 mb-4 flex items-center"> <i class="fa fa-list-ol text-primary mr-2"></i> 队列配置 </h2> <form id="queue-form" class="space-y-6"> <div class="grid grid-cols-1 md:grid-cols-2 gap-6"> <div> <label for="queue-name-cfg" class="form-label">队列名称</label> <select id="queue-name-cfg" name="queueName" class="form-select px-3 py-2" required> <option value="">加载中...</option> </select> <p class="mt-1 text-xs text-gray-500">从可用队列中选择(已在QueueRegistry注册)</p> </div> <div> <label for="queue-capacity-cfg" class="form-label">队列容量(单分区)</label> <input type="number" id="queue-capacity-cfg" name="capacity" class="form-input px-3 py-2" min="0"> <p class="mt-1 text-xs text-gray-500">留空表示无界</p> </div> <div class="flex items-center"> <input type="checkbox" id="is-partition-cfg" name="partitioning" class="h-4 w-4 text-primary focus:ring-primary"> <label for="is-partition-cfg" class="ml-2 text-sm text-gray-700">启用分区队列(仅PartiFlow生效)</label> </div> </div> <div id="partition-cfg" class="grid grid-cols-1 md:grid-cols-3 gap-6 hidden"> <div> <label for="partition-num-cfg" class="form-label">分区数量</label> <input type="number" id="partition-num-cfg" name="partitionNum" min="1" class="form-input px-3 py-2" required> </div> <div> <label for="offer-strategy-cfg" class="form-label">入队策略(如ROUND_ROBIN)</label> <input type="text" id="offer-strategy-cfg" name="offerStrategy" class="form-input px-3 py-2" required> </div> <div> <label for="poll-strategy-cfg" class="form-label">出队策略(如ROUND_ROBIN)</label> <input type="text" id="poll-strategy-cfg" name="pollStrategy" class="form-input px-3 py-2" required> </div> <div> <label for="remove-strategy-cfg" class="form-label">移除策略(如FIFO)</label> <input type="text" id="remove-strategy-cfg" name="removeStrategy" class="form-input px-3 py-2" required> </div> </div> <div class="flex justify-end"> <button type="button" id="reset-queue" class="mr-3 px-4 py-2 border border-gray-300 rounded-md text-sm text-gray-700 hover:bg-gray-50 transition">重置</button> <button type="submit" class="px-4 py-2 bg-primary text-white rounded-md text-sm hover:bg-primary/90 transition"> <i class="fa fa-save mr-1"></i> 保存 </button> </div> </form> </div> <div class="config-card"> <h2 class="text-xl font-bold text-gray-800 mb-4 flex items-center"> <i class="fa fa-ban text-primary mr-2"></i> 拒绝策略 </h2> <form id="reject-form" class="space-y-6"> <div class="grid grid-cols-1 md:grid-cols-2 gap-6"> <div> <label for="reject-name-cfg" class="form-label">拒绝策略</label> <select id="reject-name-cfg" name="rsName" class="form-select px-3 py-2" required> <option value="">加载中...</option> </select> <p class="mt-1 text-xs text-gray-500">从可用策略中选择(已在RejectStrategyRegistry注册)</p> </div> <div class="bg-yellow-50 p-3 rounded border border-yellow-100 flex items-center"> <i class="fa fa-exclamation-triangle text-yellow-500 mt-0.5"></i> <p class="ml-2 text-sm text-yellow-700">选择后将立即应用到线程池</p> </div> </div> <div class="flex justify-end"> <button type="button" id="reset-reject" class="mr-3 px-4 py-2 border border-gray-300 rounded-md text-sm text-gray-700 hover:bg-gray-50 transition">重置</button> <button type="submit" class="px-4 py-2 bg-primary text-white rounded-md text-sm hover:bg-primary/90 transition"> <i class="fa fa-save mr-1"></i> 保存 </button> </div> </form> </div> </div> </main> <footer class="bg-white border-t border-gray-200 py-4 mt-8"> <div class="container mx-auto px-4 text-center text-sm text-gray-500"> <p>线程池监控系统 &copy; | WS状态:<span id="footer-ws-status" class="ws-status-reconnect">连接中...</span></p> </div> </footer> <script> const OfWorker = { CORE: 'core', EXTRA: 'extra' }; const BASE_URL = `${window.location.protocol}//${window.location.host}`; let trendChart, originalConfig = { worker: {}, queue: {}, reject: {} }; let queueNames = []; let rejectStrategyNames = []; let poolName = ''; // 从URL参数获取的线程池名称 const trendData = { timestamps: [], runnable: [0], blocked: [0], waiting: [0], timedWaiting: [0] }; let wsInstance = null; let reconnectCount = 0; const MAX_RECONNECT = 5; let chartUpdateTimeout = null; const DOM = { monitor: { queueInfo: document.getElementById('queue-info'), rejectStrategy: document.getElementById('reject-strategy'), queueCapacity: document.getElementById('queue-capacity'), partitionTotal: document.getElementById('partition-total'), partitionTbody: document.getElementById('partition-tbody') }, form: { queue: { name: document.getElementById('queue-name-cfg'), capacity: document.getElementById('queue-capacity-cfg'), isPartition: document.getElementById('is-partition-cfg'), partitionNum: document.getElementById('partition-num-cfg'), offerStrategy: document.getElementById('offer-strategy-cfg'), pollStrategy: document.getElementById('poll-strategy-cfg'), removeStrategy: document.getElementById('remove-strategy-cfg'), partitionCfg: document.getElementById('partition-cfg') }, reject: { name: document.getElementById('reject-name-cfg') } } }; document.addEventListener('DOMContentLoaded', () => { // 从URL获取线程池名称参数 const urlParams = new URLSearchParams(window.location.search); poolName = urlParams.get('poolName'); if (!poolName) { alert('未找到线程池名称参数'); window.location.href = '/index.html'; return; } initChart(); bindEvents(); loadBaseConfig(); initWebSocket(); loadQueueNames(); loadRejectStrategyNames(); }); function initChart() { const ctx = document.getElementById('thread-trend-chart').getContext('2d'); if (trendChart) return; trendChart = new Chart(ctx, { type: 'line', data: { labels: trendData.timestamps.length === 0 ? ['初始化'] : trendData.timestamps, datasets: [ { label: '运行中', data: trendData.runnable, borderColor: '#52C41A', tension: 0.3, pointRadius: 2, pointHoverRadius: 4 }, { label: '阻塞中', data: trendData.blocked, borderColor: '#FAAD14', tension: 0.3, pointRadius: 2, pointHoverRadius: 4 }, { label: '等待中', data: trendData.waiting, borderColor: '#1890FF', tension: 0.3, pointRadius: 2, pointHoverRadius: 4 }, { label: '限时等待', data: trendData.timedWaiting, borderColor: '#FF5252', tension: 0.3, pointRadius: 2, pointHoverRadius: 4 } ] }, options: { responsive: true, maintainAspectRatio: false, scales: { x: { title: { display: true, text: '时间' }, ticks: { maxRotation: 0 }, min: 0, max: Math.max(5, trendData.timestamps.length) }, y: { title: { display: true, text: '线程数' }, beginAtZero: true, stepSize: 1, min: 0, max: 20 } }, plugins: { legend: { display: false }, tooltip: { enabled: true, mode: 'index', intersect: false, backgroundColor: 'rgba(255, 255, 255, 0.9)', borderColor: '#E5E7EB', borderWidth: 1, borderRadius: 6, padding: 10, titleColor: '#1F2937', titleFont: { size: 14, weight: 'bold' }, bodyColor: '#4B5563', bodyFont: { size: 13 }, displayColors: true, callbacks: { title: function(context) { return `时间: ${context[0].label}`; }, label: function(context) { const label = context.dataset.label || ''; const value = context.raw || 0; return `${label}: ${value} 个`; } } } }, animation: { duration: 0 }, elements: { line: { tension: 0.3 }, point: { radius: 2, hoverRadius: 4, hoverBackgroundColor: '#FFFFFF', hoverBorderColor: context => context.dataset.borderColor, hoverBorderWidth: 2 } }, interaction: { mode: 'index', intersect: false } } }); } function bindEvents() { const navPairs = [ { nav: 'nav-monitor', mobileNav: 'mobile-nav-monitor', showPage: 'monitor-page', hidePage: 'config-page' }, { nav: 'nav-config', mobileNav: 'mobile-nav-config', showPage: 'config-page', hidePage: 'monitor-page' } ]; navPairs.forEach(pair => { document.getElementById(pair.nav).addEventListener('click', () => { switchPage(pair.showPage, pair.hidePage); if (pair.showPage === 'config-page') { loadBaseConfig().then(() => loadConfigData()); if (queueNames.length === 0) loadQueueNames(); if (rejectStrategyNames.length === 0) loadRejectStrategyNames(); } }); document.getElementById(pair.mobileNav).addEventListener('click', () => { switchPage(pair.showPage, pair.hidePage); document.getElementById('mobile-menu').classList.add('hidden'); if (pair.showPage === 'config-page') { loadBaseConfig().then(() => loadConfigData()); if (queueNames.length === 0) loadQueueNames(); if (rejectStrategyNames.length === 0) loadRejectStrategyNames(); } }); }); document.getElementById('mobile-menu-btn').addEventListener('click', () => { document.getElementById('mobile-menu').classList.toggle('hidden'); }); document.getElementById('refresh-btn').addEventListener('click', () => { const btn = document.getElementById('refresh-btn'); btn.disabled = true; btn.innerHTML = '<i class="fa fa-refresh fa-spin mr-1"></i> 刷新中...'; Promise.all([ loadBaseConfig(), loadQueueNames(), loadRejectStrategyNames() ]).then(() => { if (document.getElementById('config-page').classList.contains('block')) { loadConfigData(); } btn.disabled = false; btn.innerHTML = '<i class="fa fa-refresh mr-1"></i> 刷新配置'; }).catch(err => { btn.disabled = false; btn.innerHTML = '<i class="fa fa-refresh mr-1"></i> 刷新配置'; }); }); DOM.form.queue.isPartition.addEventListener('change', (e) => { DOM.form.queue.partitionCfg.classList.toggle('hidden', !e.target.checked); }); document.getElementById('close-msg').addEventListener('click', () => { document.getElementById('config-msg').classList.add('hidden'); }); document.getElementById('worker-form').addEventListener('submit', (e) => { e.preventDefault(); saveWorker(); }); document.getElementById('queue-form').addEventListener('submit', (e) => { e.preventDefault(); saveQueue(); }); document.getElementById('reject-form').addEventListener('submit', (e) => { e.preventDefault(); saveReject(); }); document.getElementById('reset-worker').addEventListener('click', () => updateWorkerForm(originalConfig.worker)); document.getElementById('reset-queue').addEventListener('click', () => updateQueueForm(originalConfig.queue)); document.getElementById('reset-reject').addEventListener('click', () => updateRejectForm(originalConfig.reject)); DOM.form.queue.name.addEventListener('change', (e) => { const selectedQueue = e.target.value; const isPartitionQueue = selectedQueue.includes('Parti'); DOM.form.queue.isPartition.checked = isPartitionQueue; DOM.form.queue.partitionCfg.classList.toggle('hidden', !isPartitionQueue); }); } function switchPage(showId, hideId) { document.getElementById(showId).classList.remove('hidden'); document.getElementById(hideId).classList.add('hidden'); document.querySelectorAll('.nav-active').forEach(el => el.classList.remove('nav-active')); document.getElementById(showId === 'monitor-page' ? 'nav-monitor' : 'nav-config').classList.add('nav-active'); document.getElementById(showId === 'monitor-page' ? 'mobile-nav-monitor' : 'mobile-nav-config').classList.add('nav-active'); } function loadBaseConfig() { return Promise.all([ fetch(`${BASE_URL}/monitor/pool?tpName=${encodeURIComponent(poolName)}`).then(res => { if (!res.ok) throw new Error(`HTTP错误: ${res.status}`); return res.json(); }), fetch(`${BASE_URL}/monitor/queue?tpName=${encodeURIComponent(poolName)}`).then(res => { if (!res.ok) throw new Error(`HTTP错误: ${res.status}`); return res.json(); }), fetch(`${BASE_URL}/monitor/tasks?tpName=${encodeURIComponent(poolName)}`).then(res => { if (!res.ok) throw new Error(`HTTP错误: ${res.status}`); return res.json(); }) ]).then(([poolInfo, queueInfo, taskCount]) => { document.getElementById('pool-name').textContent = poolInfo.poolName || '未知线程池'; document.getElementById('thread-name').textContent = poolInfo.threadName || '未知线程名'; document.getElementById('core-nums').textContent = poolInfo.coreNums || 0; document.getElementById('max-nums').textContent = poolInfo.maxNums || 0; document.getElementById('alive-time').textContent = poolInfo.aliveTime || 0; document.getElementById('queue-size').textContent = taskCount || 0; DOM.monitor.rejectStrategy.textContent = poolInfo.rejectStrategyName || '未知策略'; const queueDesc = queueInfo.queueName ? `${queueInfo.queueName}(${queueInfo.partitioning ? '分区队列' : '普通队列'})` : '未知队列'; DOM.monitor.queueInfo.textContent = queueDesc; DOM.monitor.queueCapacity.textContent = queueInfo.capacity === null ? '无界' : queueInfo.capacity; const daemonBadge = document.getElementById('daemon-badge'); daemonBadge.textContent = poolInfo.daemon ? '守护线程' : '非守护线程'; daemonBadge.className = poolInfo.daemon ? 'badge bg-blue-100 text-blue-800' : 'badge bg-gray-100 text-gray-800'; const coreDestroyBadge = document.getElementById('core-destroy-badge'); coreDestroyBadge.textContent = poolInfo.coreDestroy ? '核心可销毁' : '核心不可销毁'; coreDestroyBadge.className = poolInfo.coreDestroy ? 'badge bg-green-100 text-green-800' : 'badge bg-orange-100 text-orange-800'; originalConfig = { worker: { coreNums: poolInfo.coreNums, maxNums: poolInfo.maxNums, coreDestroy: poolInfo.coreDestroy || false, aliveTime: poolInfo.aliveTime, isDaemon: poolInfo.daemon || false }, queue: { queueName: queueInfo.queueName || '', capacity: queueInfo.capacity, partitioning: queueInfo.partitioning || false, partitionNum: queueInfo.partitionNum || 1, offerStrategy: queueInfo.offerPolicy || '', pollStrategy: queueInfo.pollPolicy || '', removeStrategy: queueInfo.removePolicy || '' }, reject: { rsName: poolInfo.rejectStrategyName || '' } }; if (queueNames.length > 0) { updateQueueSelect(originalConfig.queue.queueName); } if (rejectStrategyNames.length > 0) { updateRejectSelect(originalConfig.reject.rsName); } if (queueInfo.partitionData) { updatePartitionTable(queueInfo.partitionData); } }); } function loadQueueNames() { return fetch(`${BASE_URL}/monitor/queueName?tpName=${encodeURIComponent(poolName)}`) .then(res => { if (!res.ok) throw new Error(`加载队列名称失败: ${res.status}`); return res.json(); }) .then(names => { queueNames = names || []; DOM.form.queue.name.innerHTML = ''; if (queueNames.length === 0) { DOM.form.queue.name.innerHTML = '<option value="" disabled>无可用队列</option>'; return; } queueNames.forEach(name => { const option = document.createElement('option'); option.value = name; option.textContent = name; DOM.form.queue.name.appendChild(option); }); if (originalConfig.queue?.queueName) { updateQueueSelect(originalConfig.queue.queueName); } }) .catch(err => { console.error('加载队列名称错误:', err); DOM.form.queue.name.innerHTML = '<option value="" disabled>加载队列失败</option>'; }); } function loadRejectStrategyNames() { return fetch(`${BASE_URL}/monitor/rejectStrategyName?tpName=${encodeURIComponent(poolName)}`) .then(res => { if (!res.ok) throw new Error(`加载拒绝策略失败: ${res.status}`); return res.json(); }) .then(names => { rejectStrategyNames = names || []; DOM.form.reject.name.innerHTML = ''; if (rejectStrategyNames.length === 0) { DOM.form.reject.name.innerHTML = '<option value="" disabled>无可用策略</option>'; return; } rejectStrategyNames.forEach(name => { const option = document.createElement('option'); option.value = name; option.textContent = name; DOM.form.reject.name.appendChild(option); }); if (originalConfig.reject?.rsName) { updateRejectSelect(originalConfig.reject.rsName); } }) .catch(err => { console.error('加载拒绝策略错误:', err); DOM.form.reject.name.innerHTML = '<option value="" disabled>加载策略失败</option>'; }); } function updateQueueSelect(queueName) { if (DOM.form.queue.name && queueName) { DOM.form.queue.name.value = queueName; DOM.form.queue.name.dispatchEvent(new Event('change')); } } function updateRejectSelect(strategyName) { if (DOM.form.reject.name && strategyName) { DOM.form.reject.name.value = strategyName; } } // 核心修复:WebSocket初始化和消息处理 function initWebSocket() { if (wsInstance) { wsInstance.close(1000, '重新初始化连接'); wsInstance = null; } // 确保WebSocket路径与后端配置一致(需与后端WebSocketConfig映射路径匹配) const wsProtocol = window.location.protocol === 'https:' ? 'wss:' : 'ws:'; const wsUrl = `${wsProtocol}//${window.location.host}/monitor/threads`; try { wsInstance = new WebSocket(wsUrl); } catch (err) { console.error('WebSocket初始化失败:', err); handleWsReconnect(); return; } wsInstance.onopen = () => { reconnectCount = 0; updateWsStatus('normal', 'WS连接正常'); console.log('WebSocket连接成功:', wsUrl); }; // 修复:按后端统一格式解析消息({tpName, type, data}) wsInstance.onmessage = (evt) => { const now = new Date(); const timeStr = `${now.toLocaleDateString()} ${now.toLocaleTimeString()}`; document.getElementById('last-ws-msg').textContent = `最后接收: ${timeStr}`; document.getElementById('mobile-last-ws-msg').textContent = `最后接收: ${timeStr}`; const rawData = evt.data.trim(); try { // 解析后端统一格式的消息 const msg = JSON.parse(rawData); // 只处理当前线程池的数据(匹配tpName) if (msg.tpName !== poolName) return; // 按消息类型分发处理 switch (msg.type) { case 'threadInfo': // 线程状态信息 updateThreadStats(msg.data); break; case 'taskNums': // 总任务数 document.getElementById('queue-size').textContent = msg.data || 0; break; case 'partitionTaskNums': // 分区任务数 updatePartitionTable(msg.data); break; default: console.log('未知WS消息类型:', msg.type); } } catch (err) { console.error('WS消息解析错误:', err, '原始数据:', rawData); } }; wsInstance.onclose = (event) => { console.log('WebSocket连接关闭:', event.code, event.reason); if (event.code !== 1000 && reconnectCount < MAX_RECONNECT) { handleWsReconnect(); } else if (reconnectCount >= MAX_RECONNECT) { updateWsStatus('error', 'WS重连失败,请刷新页面'); } else { updateWsStatus('error', 'WS连接已关闭'); } }; wsInstance.onerror = (error) => { console.error('WebSocket错误:', error); updateWsStatus('error', 'WS连接错误'); }; } function handleWsReconnect() { reconnectCount++; const delay = Math.pow(2, reconnectCount) * 1000; // 指数退避重连 updateWsStatus('reconnect', `WS重连中(${reconnectCount}/${MAX_RECONNECT},${delay/1000}s后)`); console.log(`WebSocket重连倒计时: ${delay/1000}s`); setTimeout(() => { initWebSocket(); }, delay); } function updateWsStatus(type, text) { const statusElements = [ { id: 'ws-status', mobileId: 'mobile-ws-status' }, { id: 'footer-ws-status', mobileId: null } ]; statusElements.forEach(item => { const desktopEl = document.getElementById(item.id); if (desktopEl) { desktopEl.classList.remove('ws-status-normal', 'ws-status-reconnect', 'ws-status-error'); desktopEl.classList.add(`ws-status-${type}`); if (type === 'normal') { desktopEl.innerHTML = `<i class="fa fa-check mr-1"></i> ${text}`; } else if (type === 'reconnect') { desktopEl.innerHTML = `<i class="fa fa-circle-o-notch fa-spin mr-1"></i> ${text}`; } else if (type === 'error') { desktopEl.innerHTML = `<i class="fa fa-exclamation-circle mr-1"></i> ${text}`; } } if (item.mobileId) { const mobileEl = document.getElementById(item.mobileId); if (mobileEl) { mobileEl.classList.remove('ws-status-normal', 'ws-status-reconnect', 'ws-status-error'); mobileEl.classList.add(`ws-status-${type}`); mobileEl.innerHTML = desktopEl.innerHTML; } } }); } // 修复:正确提取core/extra线程状态数据 function updateThreadStats(threadData) { // threadData格式:{core: {RUNNABLE: 1, ...}, extra: {RUNNABLE: 0, ...}} const coreStates = threadData[OfWorker.CORE] || {}; const extraStates = threadData[OfWorker.EXTRA] || {}; // 提取各状态数量(默认0) const coreRun = coreStates.RUNNABLE || 0; const coreBlock = coreStates.BLOCKED || 0; const coreWait = coreStates.WAITING || 0; const coreTimeWait = coreStates.TIMED_WAITING || 0; const coreTotal = coreRun + coreBlock + coreWait + coreTimeWait; const extraRun = extraStates.RUNNABLE || 0; const extraBlock = extraStates.BLOCKED || 0; const extraWait = extraStates.WAITING || 0; const extraTimeWait = extraStates.TIMED_WAITING || 0; const extraTotal = extraRun + extraBlock + extraWait + extraTimeWait; // 更新核心线程状态 document.querySelector('.core-run').textContent = coreRun; document.querySelector('.core-block').textContent = coreBlock; document.querySelector('.core-wait').textContent = coreWait; document.querySelector('.core-timewait').textContent = coreTimeWait; document.querySelector('.core-total').textContent = coreTotal; // 更新额外线程状态 document.querySelector('.extra-run').textContent = extraRun; document.querySelector('.extra-block').textContent = extraBlock; document.querySelector('.extra-wait').textContent = extraWait; document.querySelector('.extra-timewait').textContent = extraTimeWait; document.querySelector('.extra-total').textContent = extraTotal; // 计算总计 const totalRun = coreRun + extraRun; const totalBlock = coreBlock + extraBlock; const totalWait = coreWait + extraWait; const totalTimeWait = coreTimeWait + extraTimeWait; const totalAll = totalRun + totalBlock + totalWait + totalTimeWait; // 更新总计行 document.querySelector('.total-run').textContent = totalRun; document.querySelector('.total-block').textContent = totalBlock; document.querySelector('.total-wait').textContent = totalWait; document.querySelector('.total-timewait').textContent = totalTimeWait; document.querySelector('.total-all').textContent = totalAll; // 防抖更新图表 if (!chartUpdateTimeout) { chartUpdateTimeout = setTimeout(() => { updateTrendChart(totalRun, totalBlock, totalWait, totalTimeWait); chartUpdateTimeout = null; }, 500); } } function updateTrendChart(run, block, wait, timeWait) { if (!trendChart) return; const time = new Date().toTimeString().slice(0, 8); trendData.timestamps.push(time); trendData.runnable.push(run || 0); trendData.blocked.push(block || 0); trendData.waiting.push(wait || 0); trendData.timedWaiting.push(timeWait || 0); // 只保留最近30个数据点 if (trendData.timestamps.length > 30) { Object.values(trendData).forEach(arr => arr.shift()); } // 更新图表数据 trendChart.data.labels = trendData.timestamps; trendChart.data.datasets[0].data = trendData.runnable; trendChart.data.datasets[1].data = trendData.blocked; trendChart.data.datasets[2].data = trendData.waiting; trendChart.data.datasets[3].data = trendData.timedWaiting; // 动态调整Y轴最大值(留2个单位余量) const maxData = Math.max( ...trendData.runnable, ...trendData.blocked, ...trendData.waiting, ...trendData.timedWaiting ); trendChart.options.scales.y.max = maxData + 2; // 无动画更新图表 trendChart.update('none'); } function updatePartitionTable(partitionData) { if (!partitionData || Object.keys(partitionData).length === 0) { DOM.monitor.partitionTbody.innerHTML = '<tr><td class="px-4 py-3 text-sm text-gray-500" colspan="2">无分区数据</td></tr>'; DOM.monitor.partitionTotal.textContent = '0'; return; } // 按分区ID排序 const sortedIds = Object.keys(partitionData).sort((a, b) => parseInt(a) - parseInt(b)); DOM.monitor.partitionTotal.textContent = sortedIds.length; // 批量创建DOM(优化性能) const fragment = document.createDocumentFragment(); sortedIds.forEach(id => { const tr = document.createElement('tr'); tr.innerHTML = ` <td class="px-4 py-3 text-sm font-medium text-primary">${id}</td> <td class="px-4 py-3 text-sm text-gray-900">${partitionData[id]}</td> `; fragment.appendChild(tr); }); DOM.monitor.partitionTbody.innerHTML = ''; DOM.monitor.partitionTbody.appendChild(fragment); originalConfig.queue.partitionData = partitionData; } function loadConfigData() { if (originalConfig.queue.queueName === undefined) { return loadBaseConfig().then(() => { updateWorkerForm(originalConfig.worker); updateQueueForm(originalConfig.queue); updateRejectForm(originalConfig.reject); }); } updateWorkerForm(originalConfig.worker); updateQueueForm(originalConfig.queue); updateRejectForm(originalConfig.reject); return Promise.resolve(); } function updateWorkerForm(data) { document.getElementById('core-nums-cfg').value = data.coreNums || ''; document.getElementById('max-nums-cfg').value = data.maxNums || ''; document.getElementById('alive-time-cfg').value = data.aliveTime || ''; document.getElementById('core-destroy-cfg').checked = data.coreDestroy || false; document.getElementById('is-daemon-cfg').checked = data.isDaemon || false; } function updateQueueForm(data) { const isPartition = data.partitioning || false; updateQueueSelect(data.queueName); DOM.form.queue.capacity.value = data.capacity !== null ? data.capacity : ''; DOM.form.queue.isPartition.checked = isPartition; DOM.form.queue.partitionCfg.classList.toggle('hidden', !isPartition); if (isPartition) { DOM.form.queue.partitionNum.value = data.partitionNum || 1; DOM.form.queue.offerStrategy.value = data.offerStrategy || ''; DOM.form.queue.pollStrategy.value = data.pollStrategy || ''; DOM.form.queue.removeStrategy.value = data.removeStrategy || ''; } } function updateRejectForm(data) { updateRejectSelect(data.rsName); } function saveWorker() { const formData = { tpName: poolName, coreNums: parseInt(document.getElementById('core-nums-cfg').value), maxNums: parseInt(document.getElementById('max-nums-cfg').value), coreDestroy: document.getElementById('core-destroy-cfg').checked, aliveTime: parseInt(document.getElementById('alive-time-cfg').value), isDaemon: document.getElementById('is-daemon-cfg').checked }; if (isNaN(formData.coreNums) || isNaN(formData.maxNums)) { return showConfigMsg('线程数必须为有效数字', 'error'); } if (formData.coreNums > formData.maxNums) { return showConfigMsg('核心线程数不能大于最大线程数', 'error'); } fetch(`${BASE_URL}/monitor/worker?${new URLSearchParams(formData)}`, { method: 'PUT' }) .then(res => res.json()) .then(success => { if (success) { showConfigMsg('线程配置保存成功', 'success'); loadBaseConfig().then(() => { originalConfig.worker = { ...formData }; if (document.getElementById('config-page').classList.contains('block')) { updateWorkerForm(originalConfig.worker); } }); } else { showConfigMsg('线程配置保存失败(参数无效)', 'error'); } }).catch(err => { showConfigMsg('网络错误,保存失败', 'error'); }); } function saveQueue() { const isPartition = DOM.form.queue.isPartition.checked; const formData = { queueName: DOM.form.queue.name.value.trim(), capacity: DOM.form.queue.capacity.value.trim() ? parseInt(DOM.form.queue.capacity.value) : null, partitioning: isPartition, partitionNum: isPartition ? parseInt(DOM.form.queue.partitionNum.value) : null, offerStrategy: isPartition ? DOM.form.queue.offerStrategy.value.trim() : null, pollStrategy: isPartition ? DOM.form.queue.pollStrategy.value.trim() : null, removeStrategy: isPartition ? DOM.form.queue.removeStrategy.value.trim() : null }; if (!formData.queueName) return showConfigMsg('请选择队列名称', 'error'); if (isPartition && (isNaN(formData.partitionNum) || !formData.offerStrategy)) { return showConfigMsg('分区队列需填写完整的分区数量和策略', 'error'); } fetch(`${BASE_URL}/monitor/queue?tpName=${encodeURIComponent(poolName)}`, { method: 'PUT', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(formData) }).then(res => res.json()) .then(success => { if (success) { showConfigMsg('队列配置保存成功', 'success'); Promise.all([ loadBaseConfig(), loadQueueNames() ]).then(() => { originalConfig.queue = { ...formData }; updateQueueForm(originalConfig.queue); const queueDesc = formData.queueName ? `${formData.queueName}(${formData.partitioning ? '分区队列' : '普通队列'})` : '未知队列'; DOM.monitor.queueInfo.textContent = queueDesc; DOM.monitor.queueCapacity.textContent = formData.capacity === null ? '无界' : formData.capacity; }); } else { showConfigMsg('队列保存失败(参数错误)', 'error'); } }).catch(err => { showConfigMsg('网络错误,保存失败', 'error'); }); } function saveReject() { const rsName = DOM.form.reject.name.value.trim(); if (!rsName) return showConfigMsg('请选择拒绝策略', 'error'); fetch(`${BASE_URL}/monitor/rejectStrategy?tpName=${encodeURIComponent(poolName)}&rsName=${encodeURIComponent(rsName)}`, { method: 'PUT' }) .then(res => res.json()) .then(success => { if (success) { showConfigMsg('拒绝策略保存成功', 'success'); loadBaseConfig().then(() => { originalConfig.reject.rsName = rsName; updateRejectForm(originalConfig.reject); DOM.monitor.rejectStrategy.textContent = rsName; }); } else { showConfigMsg('策略保存失败', 'error'); } }).catch(err => { showConfigMsg('网络错误,保存失败', 'error'); }); } function showConfigMsg(text, type, duration = 5000) { const msgEl = document.getElementById('config-msg'); const iconEl = document.getElementById('msg-icon'); if (type === 'success') { msgEl.className = 'mb-6 p-4 rounded-md flex items-center bg-green-50 text-green-800'; iconEl.className = 'mr-3 text-xl fa fa-check-circle text-green-500'; } else { msgEl.className = 'mb-6 p-4 rounded-md flex items-center bg-red-50 text-red-800'; iconEl.className = 'mr-3 text-xl fa fa-exclamation-circle text-red-500'; } document.getElementById('msg-text').textContent = text; msgEl.classList.remove('hidden'); if (duration > 0) { setTimeout(() => msgEl.classList.add('hidden'), duration); } } // 页面关闭前关闭WebSocket连接 window.addEventListener('beforeunload', () => { if (wsInstance) { wsInstance.close(1000, '页面关闭'); wsInstance = null; } }); </script> </body> </html>
2401_82379797/DGA-Pool
src/main/resources/static/detail.html
HTML
mit
55,473
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>DynaPart-TP 线程池监控中心</title> <script src="https://cdn.tailwindcss.com"></script> <link href="https://cdn.jsdelivr.net/npm/font-awesome@4.7.0/css/font-awesome.min.css" rel="stylesheet"> <script src="https://cdn.jsdelivr.net/npm/chart.js@4.4.8/dist/chart.umd.min.js"></script> <script> tailwind.config = { theme: { extend: { colors: { primary: '#3B82F6', secondary: '#10B981', danger: '#EF4444', warning: '#F59E0B', dark: '#1E293B', light: '#F8FAFC' }, fontFamily: { sans: ['Inter', 'system-ui', 'sans-serif'], }, } } } </script> <style type="text/tailwindcss"> @layer utilities { .content-auto { content-visibility: auto; } .card-shadow { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); } .sidebar-item-active { @apply bg-primary/10 text-primary border-l-4 border-primary; } } </style> </head> <body class="bg-gray-50 text-gray-800 min-h-screen"> <!-- 顶部导航栏 --> <header class="bg-white shadow-sm fixed top-0 left-0 right-0 z-30"> <div class="container mx-auto px-4 py-3 flex justify-between items-center"> <div class="flex items-center space-x-3"> <div class="bg-primary text-white p-2 rounded-lg"> <i class="fa fa-cogs text-xl"></i> </div> <h1 class="text-xl font-bold">DynaPart-TP</h1> </div> <div class="flex items-center space-x-6"> <div class="hidden md:flex items-center space-x-1 text-sm text-gray-600"> <i class="fa fa-clock-o"></i> <span id="current-time">加载中...</span> </div> <div class="relative"> <button class="flex items-center space-x-1 focus:outline-none"> <span class="hidden md:inline text-sm font-medium">管理员</span> <i class="fa fa-user-circle-o text-xl"></i> </button> </div> </div> </div> </header> <!-- 主要内容区 --> <main class="container mx-auto px-4 pt-20 pb-16"> <!-- 页面标题和统计 --> <div class="mb-8"> <h2 class="text-[clamp(1.5rem,3vw,2.5rem)] font-bold mb-2">线程池监控总览</h2> <p class="text-gray-600">实时监控和管理所有线程池资源</p> <div class="grid grid-cols-1 md:grid-cols-3 gap-4 mt-6"> <div class="bg-white rounded-xl p-5 card-shadow flex items-center"> <div class="bg-primary/10 p-3 rounded-lg mr-4"> <i class="fa fa-tasks text-primary text-2xl"></i> </div> <div> <p class="text-gray-500 text-sm">总线程池数量</p> <p class="text-2xl font-bold" id="total-pool-count">0</p> </div> </div> <div class="bg-white rounded-xl p-5 card-shadow flex items-center"> <div class="bg-secondary/10 p-3 rounded-lg mr-4"> <i class="fa fa-bolt text-secondary text-2xl"></i> </div> <div> <p class="text-gray-500 text-sm">总线程数</p> <p class="text-2xl font-bold" id="total-active-threads">0</p> </div> </div> <div class="bg-white rounded-xl p-5 card-shadow flex items-center"> <div class="bg-warning/10 p-3 rounded-lg mr-4"> <i class="fa fa-list-alt text-warning text-2xl"></i> </div> <div> <p class="text-gray-500 text-sm">排队任务总数</p> <p class="text-2xl font-bold" id="total-queued-tasks">0</p> </div> </div> </div> </div> <!-- 线程池列表 --> <div class="bg-white rounded-xl shadow-sm overflow-hidden"> <div class="p-5 border-b border-gray-100"> <h3 class="font-bold text-lg">线程池列表</h3> </div> <div class="overflow-x-auto"> <table class="min-w-full divide-y divide-gray-200"> <thead class="bg-gray-50"> <tr> <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">线程池名称</th> <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">核心线程数</th> <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">最大线程数</th> <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">队列类型</th> <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">拒绝策略</th> <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">操作</th> </tr> </thead> <tbody id="pool-table-body" class="bg-white divide-y divide-gray-200"> <!-- 线程池数据将通过JavaScript动态加载 --> <tr> <td colspan="6" class="px-6 py-10 text-center text-gray-500"> <p>加载中...</p> </td> </tr> </tbody> </table> </div> </div> </main> <script> // 更新当前时间 function updateCurrentTime() { const now = new Date(); const options = { year: 'numeric', month: '2-digit', day: '2-digit', hour: '2-digit', minute: '2-digit', second: '2-digit' }; document.getElementById('current-time').textContent = now.toLocaleString('zh-CN', options); } setInterval(updateCurrentTime, 1000); updateCurrentTime(); // 格式化数字显示 function formatNumber(num) { return num.toLocaleString('zh-CN'); } // 加载所有线程池信息 function loadAllThreadPoolInfo() { fetch('/monitor/pools') .then(response => { if (!response.ok) { throw new Error('网络响应不正常'); } return response.json(); }) .then(pools => { // 更新总计数 document.getElementById('total-pool-count').textContent = formatNumber(pools.length); // 计算总线程数(核心+最大的估算)和排队任务(需要额外请求,这里简化) let totalThreads = 0; let totalQueued = 0; pools.forEach(pool => { totalThreads += (pool.maxNums || 0); // 实际项目中应调用/monitor/tasks接口获取真实队列数 totalQueued += 0; }); document.getElementById('total-active-threads').textContent = formatNumber(totalThreads); document.getElementById('total-queued-tasks').textContent = formatNumber(totalQueued); // 更新表格内容 const tableBody = document.getElementById('pool-table-body'); tableBody.innerHTML = ''; if (pools.length === 0) { tableBody.innerHTML = ` <tr> <td colspan="6" class="px-6 py-10 text-center text-gray-500"> <p>没有找到线程池数据</p> </td> </tr> `; return; } pools.forEach(pool => { const row = document.createElement('tr'); row.className = 'hover:bg-gray-50 transition-colors'; row.innerHTML = ` <td class="px-6 py-4 whitespace-nowrap"> <div class="font-medium text-gray-900">${pool.poolName}</div> <div class="text-sm text-gray-500">${pool.threadName || '-'}</div> </td> <td class="px-6 py-4 whitespace-nowrap"> <div>${pool.coreNums || 0}</div> </td> <td class="px-6 py-4 whitespace-nowrap"> <div>${pool.maxNums || 0}</div> </td> <td class="px-6 py-4 whitespace-nowrap"> <div>${pool.queueName || '-'}</div> </td> <td class="px-6 py-4 whitespace-nowrap"> <div>${pool.rejectStrategyName || '-'}</div> </td> <td class="px-6 py-4 whitespace-nowrap text-sm font-medium"> <a href="/detail.html?poolName=${encodeURIComponent(pool.poolName)}" class="text-primary hover:text-primary/80 mr-3"> <i class="fa fa-eye mr-1"></i>监控 </a> <a href="/detail.html?poolName=${encodeURIComponent(pool.poolName)}#settings" class="text-secondary hover:text-secondary/80"> <i class="fa fa-sliders mr-1"></i>配置 </a> </td> `; tableBody.appendChild(row); }); }) .catch(error => { console.error('加载线程池信息失败:', error); const tableBody = document.getElementById('pool-table-body'); tableBody.innerHTML = ` <tr> <td colspan="6" class="px-6 py-10 text-center text-gray-500"> <p>加载失败: ${error.message}</p> <button onclick="loadAllThreadPoolInfo()" class="mt-2 text-primary hover:underline"> 重试 </button> </td> </tr> `; }); } // 页面加载时加载数据 document.addEventListener('DOMContentLoaded', function() { loadAllThreadPoolInfo(); // 每30秒自动刷新一次数据 setInterval(loadAllThreadPoolInfo, 30000); }); </script> </body> </html>
2401_82379797/DGA-Pool
src/main/resources/static/index.html
HTML
mit
11,247
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <link rel="icon" href="/favicon.ico" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Chat GPT - InsCode.net</title> </head> <body> <div id="app"></div> <script type="module" src="/src/main.js"></script> </body> </html>
2401_82606246/ChatGPT
index.html
HTML
unknown
351
{ pkgs }: { deps = [ pkgs.yarn pkgs.nodejs-16_x ]; }
2401_82606246/ChatGPT
inscode.nix
Nix
unknown
76
<template> <div class="container ivu-p"> <div class="dialog"> <template v-for="(item, index) in dialogs" :key="index"> <div class="dialog-item" :class="{ 'dialog-item-me': item.role === 'me', 'dialog-item-ai': item.role === 'ai' }"> <div class="dialog-item-main">{{ item.text }}</div> </div> </template> </div> <div class="question ivu-mt"> <Input v-model="question" type="textarea" :autosize="{ minRows: 4, maxRows: 6 }" placeholder="输入你的问题" /> <Row class="ivu-mt"> <Col> <Button type="primary" size="large" icon="md-send" :loading="loading" @click="handleSend">发送</Button> </Col> <Col> <Button size="large" class="ivu-ml" icon="md-add" :disabled="loading" @click="handleNewChat">新对话</Button> </Col> </Row> <Typography class="ivu-text-center ivu-m"> Powered By <img src="./assets/logo.png" class="logo"> <a href="https://inscode.net" target="_blank">InsCode.net</a> </Typography> </div> </div> </template> <script> import { fetchEventSource } from '@microsoft/fetch-event-source'; import { apiKey, apiUrl } from './api'; export default { data() { return { question: '', loading: false, dialogs: [] } }, methods: { handleSend() { if (this.loading || this.question === '') return; this.loading = true; const question = this.question; this.question = ''; this.dialogs.push({ id: this.dialogs.length + 1, role: 'me', text: question }); const aiDialogID = this.dialogs.length + 1; this.dialogs.push({ id: aiDialogID, role: 'ai', text: 'AI 思考中...' }); const dialog = this.dialogs.find(item => item.id === aiDialogID); /** * 发送请求,InsCode 已经集成了 GPT 能力 * 在 vite.config.js 中已通过环境变量写入了 apiKey(该 key 是动态写入使用者的,在 IDE 中是作者,发布到社区是运行该作品的用户) * 发布到社区后,将消耗运行者的额度 * 注意:如果部署应用,任何人通过部署后的域名访问应用时,都将消耗部署者的额度 */ const body = { messages: [ { role: 'user', content: question } ], apikey: apiKey } const source = fetchEventSource(apiUrl, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(body), onopen: (response) => { dialog.text = ''; }, onmessage: (msg) => { if (msg.data === '[DONE]') { this.loading = false; return; }; const data = JSON.parse(msg.data); const finish_reason = data.choices[0].finish_reason; const finish = finish_reason === 'stop' || finish_reason === 'length'; const content = data.choices[0].delta.content; if (finish) { this.loading = false; } else if (content) { const text = content; dialog.text += text; } }, onerror: (err) => { console.log("error", err); } }); }, handleNewChat() { this.dialogs = []; } } } </script> <style> .container { height: 100%; display: flex; flex-direction: column; } .dialog { flex: 1; overflow: auto; } .dialog-item { display: flex; } .dialog-item-main { max-width: 80%; padding: 8px; word-wrap: break-word; margin-top: 16px; border-radius: 4px; } .dialog-item-me { justify-content: flex-end; } .dialog-item-me .dialog-item-main { background-color: antiquewhite; } .dialog-item-ai .dialog-item-main { background-color: #eee; } .logo{ width: 16px; height: 16px; vertical-align: middle; position: relative; top: -1px; } </style>
2401_82606246/ChatGPT
src/App.vue
Vue
unknown
4,000
export const apiKey = process.env.INSCODE_API_KEY; export const apiUrl = 'https://inscode-api.csdn.net/api/v1/gpt/';
2401_82606246/ChatGPT
src/api.js
JavaScript
unknown
116
html, body, #app{ height: 100%; }
2401_82606246/ChatGPT
src/assets/main.css
CSS
unknown
37
import { createApp } from 'vue' import ViewUIPlus from 'view-ui-plus' import App from './App.vue' import 'view-ui-plus/dist/styles/viewuiplus.css' import './assets/main.css' const app = createApp(App) app.use(ViewUIPlus) .mount('#app')
2401_82606246/ChatGPT
src/main.js
JavaScript
unknown
243
import { defineConfig } from 'vite' import vue from '@vitejs/plugin-vue' // https://vitejs.dev/config/ export default defineConfig({ server: { host: true }, plugins: [vue()], define: { 'process.env': { INSCODE_API_KEY: process.env.INSCODE_API_KEY } } })
2401_82606246/ChatGPT
vite.config.js
JavaScript
unknown
283
extends Button # Called when the node enters the scene tree for the first time. func _ready() -> void: pass # Replace with function body. # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta: float) -> void: pass func _on_pressed() -> void: $"../../Window".visible=true
2303_806435pww/turing_machine
gdscripts/about.gd
GDScript
mit
322
extends Button # Called when the node enters the scene tree for the first time. func _ready() -> void: pass # Replace with function body. # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta: float) -> void: pass #func _on_pressed() -> void:
2303_806435pww/turing_machine
gdscripts/button.gd
GDScript
mit
295
extends RichTextLabel func tur_action_1(pos:int,state:int): $"../tag".text=" " for i in range(0, $".".text.length()): if i==pos: $"../tag".text[i]='V' else: $"../tag".text[i]='.' if ($".".text[pos]=='0' and state==0): $".".text[pos]='X' pos+=1 state=1 $"../../Panel/VScrollBar/log".text+="\nq0->q1" elif ($".".text[pos]=='Y' and state==0): pos+=1 state=3 $"../../Panel/VScrollBar/log".text+="\nq0->q3" elif (($".".text[pos]=='Y' || $".".text[pos]=='0') and state==1): pos+=1 $"../../Panel/VScrollBar/log".text+="\nq1->q1" elif ($".".text[pos]=='1' and state ==1): $".".text[pos]='Y' pos-=1 state=2 $"../../Panel/VScrollBar/log".text+="\nq1->q2" elif (($".".text[pos]=='Y'||$".".text[pos]=='0') && state ==2): pos-=1 $"../../Panel/VScrollBar/log".text+="\nq2->q2" elif ($".".text[pos]=='X' && state==2): pos+=1 state=0 $"../../Panel/VScrollBar/log".text+="\nq2->q0" elif ($".".text[pos]=='Y' && state ==3): pos+=1 $"../../Panel/VScrollBar/log".text+="\nq3->q3" elif ($".".text[pos]=='B' && state == 3): pos-=1 state=4 $"../../Panel/VScrollBar/log".text+="\nq3->q4" elif (($".".text[pos]=='X'||$".".text[pos]=='Y')&& state==4): if ($".".text[pos]=='X'): $".".text[pos]='0' pos-=1 if ($".".text[pos]=='Y'): $".".text[pos]='1' pos-=1 $"../../Panel/VScrollBar/log".text+="\nq4->q4" elif ($".".text[pos]=='B' && state==4): pos+=1 state=5 $"../../Panel/VScrollBar/log".text+="\nq4->q5" elif(state==5): pos=1 state=0 $"../../Panel/VScrollBar/log".text+="\nq5->end" for i in range(0, $".".text.length()): if i==pos: $"../tag".text[i]='V' else: $"../tag".text[i]='.' return [pos,state] func tur_action_2(pos:int,state:int,retain:String): $"../tag".text=" " for i in range(0, $".".text.length()): if i==pos: $"../tag".text[i]='V' else: $"../tag".text[i]='.' if (state==0): if($".".text[pos]=='a'): $".".text[pos]='X' state=1 retain='a' pos+=1 elif ($".".text[pos]=='b'): $".".text[pos]='Y' state=1 pos+=1 retain='b' $"../../Panel/VScrollBar/log".text+="\nq0->q1 [retain:"+retain+"]" elif(state==1): if($".".text[pos]=='a'||$".".text[pos]=='b'): pos+=1 $"../../Panel/VScrollBar/log".text+="\nq1->q1 [retain:"+retain+"]" elif ($".".text[pos]=='c'): pos+=1 state=2 $"../../Panel/VScrollBar/log".text+="\nq1->q2 [retain:"+retain+"]" elif(state==2): if($".".text[pos]=='X'||$".".text[pos]=='Y'): pos+=1 $"../../Panel/VScrollBar/log".text+="\nq2->q2 [retain:"+retain+"]" elif ($".".text[pos]=='a'&&retain=='a'): text[pos]='X' state=3 pos-=1 $"../../Panel/VScrollBar/log".text+="\nq2->q3 [retain:"+retain+"]" elif ($".".text[pos]=='b' && retain=='b'): text[pos]='Y' state=3 pos-=1 $"../../Panel/VScrollBar/log".text+="\nq2->q3 [retain:"+retain+"]" elif(state==3): if(text[pos]=='X'||text[pos]=='Y'): pos-=1 $"../../Panel/VScrollBar/log".text+="\nq3->q3 [retain:"+retain+"]" elif(text[pos]=='c'): state=4 pos-=1 $"../../Panel/VScrollBar/log".text+="\nq3->q4 [retain:"+retain+"]" elif(state==4): if(text[pos]=='a'||text[pos]=='b'): state=5 pos-=1 $"../../Panel/VScrollBar/log".text+="\nq4->q5 [retain:"+retain+"]" elif(text[pos]=='X'||text[pos]=='Y'): state=6 pos+=1 $"../../Panel/VScrollBar/log".text+="\nq4->q6 [retain:"+retain+"]" elif(state==5): if(text[pos]=='a'||text[pos]=='b'): pos-=1 $"../../Panel/VScrollBar/log".text+="\nq5->q5 [retain:"+retain+"]" elif(text[pos]=='X'||text[pos]=='Y'): state=0 pos+=1 $"../../Panel/VScrollBar/log".text+="\nq5->q0 [retain:"+retain+"]" elif(state==6): if(text[pos]=='X'||text[pos]=='Y'||text[pos]=='c'): pos+=1 $"../../Panel/VScrollBar/log".text+="\nq6->q6 [retain:"+retain+"]" elif(text[pos]=='B'): state=7 pos-=1 $"../../Panel/VScrollBar/log".text+="\nq6->q7 [retain:"+retain+"]" elif(state==7): if(text[pos]=='X'||text[pos]=='Y'||text[pos]=='c'): if(text[pos]=='X'): text[pos]='a' elif(text[pos]=='Y'): text[pos]='b' pos-=1 $"../../Panel/VScrollBar/log".text+="\nq7->q7 [retain:"+retain+"]" elif(text[pos]=='B'): state=8 pos+=1 $"../../Panel/VScrollBar/log".text+="\nq7->q8 [retain:"+retain+"]" elif(state==8): pos=1 state=0 $"../../Panel/VScrollBar/log".text+="\nq8->end [retain:"+retain+"]" for i in range(0, $".".text.length()): if i==pos: $"../tag".text[i]='V' else: $"../tag".text[i]='.' return [pos,state,retain] func tur_action_3(pos:int,state:int): $"../tag".text=" " for i in range(0, $".".text.length()): if i==pos: $"../tag".text[i]='V' else: $"../tag".text[i]='.' if(state==0): if(text[pos]=='c'): pos+=1 $"../../Panel/VScrollBar/log".text+="\nq0->q0" elif(text[pos]=='a'): text[pos]='c' state=1 pos+=1 $"../../Panel/VScrollBar/log".text+="\nq0->q1" elif(text[pos]=='b'): text[pos]='B' state=4 pos-=1 $"../../Panel/VScrollBar/log".text+="\nq0->q4" elif(state==1): if(text[pos]=='b'||text[pos]=='c'): pos+=1 $"../../Panel/VScrollBar/log".text+="\nq1->q1" elif(text[pos]=='a'): state=2 pos+=1 $"../../Panel/VScrollBar/log".text+="\nq1->q2" elif(text[pos]=='B'): text[pos]='b' state=3 pos-=1 $"../../Panel/VScrollBar/log".text+="\nq1->q3" elif(state==2): if(text[pos]=='c'||text[pos]=='b'): pos+=1 $"../../Panel/VScrollBar/log".text+="\nq2->q2" elif(text[pos]=='a'): text[pos]='c' state=1 pos+=1 $"../../Panel/VScrollBar/log".text+="\nq2->q1" elif(text[pos]=='B'): text[pos]='b' state=3 pos-=1 $"../../Panel/VScrollBar/log".text+="\nq2->q3" elif(state==3): if(text[pos]=='a'||text[pos]=='b'||text[pos]=='c'): pos-=1 $"../../Panel/VScrollBar/log".text+="\nq3->q3" elif(text[pos]=='B'): state=0 pos+=1 $"../../Panel/VScrollBar/log".text+="\nq3->q0" elif(state==4): if(text[pos]=='c'): text[pos]='B' pos-=1 $"../../Panel/VScrollBar/log".text+="\nq4->q4" elif(text[pos]=='B'): state=5 pos+=1 $"../../Panel/VScrollBar/log".text+="\nq4->q5" elif(state==5): state=0 pos+=1 $"../../Panel/VScrollBar/log".text+="\nq5->end" for i in range(0, $".".text.length()): if i==pos: $"../tag".text[i]='V' else: $"../tag".text[i]='.' return [pos,state] func tur_action_4(pos:int,state:int): $"../tag".text=" " for i in range(0, $".".text.length()): if i==pos: $"../tag".text[i]='V' else: $"../tag".text[i]='.' if(state==0): if(text[pos]=='0'): text[pos]='B' state=1 pos+=1 $"../../Panel/VScrollBar/log".text+="\nq0->q1" elif(text[pos]=='1'): text[pos]='B' state=5 pos+=1 $"../../Panel/VScrollBar/log".text+="\nq1->q5" elif(state==1): if(text[pos]=='0'): pos+=1 $"../../Panel/VScrollBar/log".text+="\nq1->q1" elif(text[pos]=='1'): state=2 pos+=1 $"../../Panel/VScrollBar/log".text+="\nq1->q2" elif(state==2): if(text[pos]=='1'): pos+=1 $"../../Panel/VScrollBar/log".text+="\nq2->q2" elif(text[pos]=='0'): state=4 text[pos]='1' pos-=1 $"../../Panel/VScrollBar/log".text+="\nq2->q4" elif(text[pos]=='B'): state=3 pos-=1 $"../../Panel/VScrollBar/log".text+="\nq2->q3" elif(state==3): if(text[pos]=='0'): pos-=1 $"../../Panel/VScrollBar/log".text+="\nq3->q3" elif(text[pos]=='1'): text[pos]='B' pos-=1 $"../../Panel/VScrollBar/log".text+="\nq3->q3" elif(text[pos]=='B'): text[pos]='0' state=6 $"../../Panel/VScrollBar/log".text+="\nq3->q6" elif(state==4): if(text[pos]=='0'||text[pos]=='1'): pos-=1 $"../../Panel/VScrollBar/log".text+="\nq4->q4" elif(text[pos]=='B'): state=0 pos+=1 $"../../Panel/VScrollBar/log".text+="\nq4->q0" elif(state==5): if(text[pos]=='0'||text[pos]=='1'): text[pos]='B' pos+=1 $"../../Panel/VScrollBar/log".text+="\nq5->q5" elif(text[pos]=='B'): state=6 $"../../Panel/VScrollBar/log".text+="\nq5->q6" elif(state==6): state=0 pos=1 $"../../Panel/VScrollBar/log".text+="\nq6->end" for i in range(0, $".".text.length()): if i==pos: $"../tag".text[i]='V' else: $"../tag".text[i]='.' return [pos,state] func tur_action_5(pos:int,state:int,retain:String): $"../tag".text=" " for i in range(0, $".".text.length()): if i==pos: $"../tag".text[i]='V' else: $"../tag".text[i]='.' if(state==0): if(text[pos]=='c'): pos+=1 $"../../Panel/VScrollBar/log".text+="\nq0->q0 retain["+retain+"]" elif(text[pos]=='a'): text[pos]='c' state=1 pos+=1 $"../../Panel/VScrollBar/log".text+="\nq0->q1 retain["+retain+"]" elif(text[pos]=='0'||text[pos]=='1'): state=5 pos-=1 $"../../Panel/VScrollBar/log".text+="\nq0->q5 retain["+retain+"]" elif(state==1): if(text[pos]=='c'): pos+=1 $"../../Panel/VScrollBar/log".text+="\nq1->q1 retain["+retain+"]" elif(text[pos]=='a'): state=2 pos+=1 $"../../Panel/VScrollBar/log".text+="\nq1->q2 retain["+retain+"]" else: state=3 retain='1' $"../../Panel/VScrollBar/log".text+="\nq1->q3 retain["+retain+"]" elif(state==2): if(text[pos]=='c'): pos+=1 $"../../Panel/VScrollBar/log".text+="\nq2->q2 retain["+retain+"]" elif(text[pos]=='a'): text[pos]='c' state=1 pos+=1 $"../../Panel/VScrollBar/log".text+="\nq2->q1 retain["+retain+"]" else: state=3 retain='0' $"../../Panel/VScrollBar/log".text+="\nq2->q3 retain["+retain+"]" elif(state==3): if(text[pos]=='0'&&retain=='0'): pos+=1 $"../../Panel/VScrollBar/log".text+="\nq3->q3 retain["+retain+"]" elif(text[pos]=='1'&&retain=='0'): text[pos]='0' state=3 retain='1' pos+=1 $"../../Panel/VScrollBar/log".text+="\nq3->q3 retain["+retain+"]" elif(text[pos]=='B'&&retain=='0'): state=4 text[pos]='0' pos-=1 $"../../Panel/VScrollBar/log".text+="\nq3->q4 retain["+retain+"]" elif(text[pos]=='1'&&retain=='1'): pos+=1 $"../../Panel/VScrollBar/log".text+="\nq3->q3 retain["+retain+"]" elif(text[pos]=='0'&&retain=='1'): text[pos]='1' retain='0' pos+=1 $"../../Panel/VScrollBar/log".text+="\nq3->q3 retain["+retain+"]" elif(text[pos]=='B'&&retain=='1'): text[pos]='1' state=4 pos-=1 $"../../Panel/VScrollBar/log".text+="\nq3->q4 retain["+retain+"]" elif(state==4): if(text[pos]=='a'||text[pos]=='c'||text[pos]=='0'||text[pos]=='1'): pos-=1 $"../../Panel/VScrollBar/log".text+="\nq4->q4 retain["+retain+"]" elif(text[pos]=='B'): state=0 pos+=1 $"../../Panel/VScrollBar/log".text+="\nq4->q0 retain["+retain+"]" elif(state==5): if(text[pos]=='c'): pos-=1 $"../../Panel/VScrollBar/log".text+="\nq5->q5 retain["+retain+"]" elif(text[pos]=='B'): state=6 pos+=1 $"../../Panel/VScrollBar/log".text+="\nq5->q6 retain["+retain+"]" elif(state==6): if(text[pos]=='c'): text[pos]='B' pos+=1 $"../../Panel/VScrollBar/log".text+="\nq6->q6 retain["+retain+"]" elif(text[pos]=='0'||text[pos]=='1'): state=7 $"../../Panel/VScrollBar/log".text+="\nq6->q7 retain["+retain+"]" elif(state==7): state=0 pos=1 $"../../Panel/VScrollBar/log".text+="\nq7->end retain["+retain+"]" for i in range(0, $".".text.length()): if i==pos: $"../tag".text[i]='V' else: $"../tag".text[i]='.' return [pos,state,retain] # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta: float) -> void: pass
2303_806435pww/turing_machine
gdscripts/full_action.gd
GDScript
mit
11,884
extends Button # Called when the node enters the scene tree for the first time. func _ready() -> void: pass # Replace with function body. # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta: float) -> void: pass func _on_pressed() -> void: if($"../once".id==3||$"../once".id==5): $"../../../full_action".text='B'+$".".text+"BBBBBBBBBB" $"../once".pos=1 $"../once".state=0 else: $"../../../full_action".text="B"+$".".text+"B" $"../once".pos=1 $"../once".state=0
2303_806435pww/turing_machine
gdscripts/label_buttons/label_1.gd
GDScript
mit
531
extends Button # Called when the node enters the scene tree for the first time. func _ready() -> void: pass # Replace with function body. # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta: float) -> void: pass func _on_pressed() -> void: if($"../once".id==3||$"../once".id==5): $"../../../full_action".text='B'+$".".text+"BBBBBBBBBB" $"../once".pos=1 $"../once".state=0 else: $"../../../full_action".text="B"+$".".text+"B" $"../once".pos=1 $"../once".state=0
2303_806435pww/turing_machine
gdscripts/label_buttons/label_2.gd
GDScript
mit
527
extends Button # Called when the node enters the scene tree for the first time. func _ready() -> void: pass # Replace with function body. # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta: float) -> void: pass func _on_label_3_pressed() -> void: if($"../once".id==3||$"../once".id==5): $"../../../full_action".text='B'+$".".text+"BBBBBBBBBB" $"../once".pos=1 $"../once".state=0 else: $"../../../full_action".text="B"+$".".text+"B" $"../once".pos=1 $"../once".state=0
2303_806435pww/turing_machine
gdscripts/label_buttons/label_3.gd
GDScript
mit
535
extends Button # Called when the node enters the scene tree for the first time. func _ready() -> void: pass # Replace with function body. # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta: float) -> void: pass func _on_pressed() -> void: if($"../once".id==3||$"../once".id==5): $"../../../full_action".text='B'+$".".text+"BBBBBBBBBB" $"../once".pos=1 $"../once".state=0 else: $"../../../full_action".text="B"+$".".text+"B" $"../once".pos=1 $"../once".state=0
2303_806435pww/turing_machine
gdscripts/label_buttons/label_4.gd
GDScript
mit
527
extends Button # Called when the node enters the scene tree for the first time. func _ready() -> void: pass # Replace with function body. # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta: float) -> void: pass func _on_label_5_pressed() -> void: if($"../once".id==3||$"../once".id==5): $"../../../full_action".text='B'+$".".text+"BBBBBBBBBB" $"../once".pos=1 $"../once".state=0 else: $"../../../full_action".text="B"+$".".text+"B" $"../once".pos=1 $"../once".state=0
2303_806435pww/turing_machine
gdscripts/label_buttons/label_5.gd
GDScript
mit
537
extends LineEdit # Called when the node enters the scene tree for the first time. func _ready() -> void: pass # Replace with function body. # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta: float) -> void: pass func _on_text_submitted(new_text: String) -> void: if($"../PanelContainer/VBoxContainer/once".id==3||$"../PanelContainer/VBoxContainer/once".id==5): $"../full_action".text='B'+$".".text+"BBBBBBBBBBBBBBBBBB" $"../PanelContainer/VBoxContainer/once".pos=1 $"../PanelContainer/VBoxContainer/once".state=0 else: $"../full_action".text="B"+$".".text+"B" $"../PanelContainer/VBoxContainer/once".pos=1 $"../PanelContainer/VBoxContainer/once".state=0
2303_806435pww/turing_machine
gdscripts/line_edit.gd
GDScript
mit
722
extends RichTextLabel # Called when the node enters the scene tree for the first time. func _ready() -> void: self.mouse_filter = Control.MOUSE_FILTER_PASS # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta: float) -> void: pass
2303_806435pww/turing_machine
gdscripts/log.gd
GDScript
mit
283
extends Button ## Called every frame. 'delta' is the elapsed time since the previous frame. #func _process(delta: float) -> void: #pass func _on_pressed() -> void: #pass # Replace with function body. $"../../modelimg".texture=load("res://images/models/model1.png") $"../../decs".texture=load("res://images/questions/dec1.png") $"../../VBoxContainer/Label1".text="0011" $"../../VBoxContainer/Label2".text="00001111" $"../../VBoxContainer/Label3".text="10" $"../../VBoxContainer/Label4".text="0010" $"../../VBoxContainer/Label5".text="111000111000" $"../../../full_action".text="STRING" $"../../VBoxContainer/once".id=1
2303_806435pww/turing_machine
gdscripts/model_gds/model_1.gd
GDScript
mit
638
extends Button # Called when the node enters the scene tree for the first time. func _on_pressed() -> void: $"../../modelimg".texture=load("res://images/models/model2.png") $"../../decs".texture=load("res://images/questions/dec2.png") $"../../VBoxContainer/Label1".text="aca" $"../../VBoxContainer/Label2".text="abcab" $"../../VBoxContainer/Label3".text="aabcaab" $"../../VBoxContainer/Label4".text="bacab" $"../../VBoxContainer/Label5".text="abbcbba" $"../../../full_action".text="STRING" $"../../VBoxContainer/once".id=2
2303_806435pww/turing_machine
gdscripts/model_gds/model_2.gd
GDScript
mit
535
extends Button # Called when the node enters the scene tree for the first time. func _ready() -> void: pass # Replace with function body. # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta: float) -> void: pass func _on_pressed() -> void: $"../../modelimg".texture=load("res://images/models/model3.png") $"../../decs".texture=load("res://images/questions/dec3.png") $"../../VBoxContainer/Label1".text="aa" $"../../VBoxContainer/Label2".text="aaaa" $"../../VBoxContainer/Label3".text="aaaaaaaa" $"../../VBoxContainer/Label4".text="aaaaaaaaaaaaaaaa" $"../../VBoxContainer/Label5".text="aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" $"../../../full_action".text="STRING" $"../../VBoxContainer/once".id=3
2303_806435pww/turing_machine
gdscripts/model_gds/model_3.gd
GDScript
mit
753
extends Button # Called when the node enters the scene tree for the first time. func _ready() -> void: pass # Replace with function body. # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta: float) -> void: pass func _on_pressed() -> void: $"../../modelimg".texture=load("res://images/models/model4.png") $"../../decs".texture=load("res://images/questions/dec4.png") $"../../VBoxContainer/Label1".text="00010" $"../../VBoxContainer/Label2".text="00001000" $"../../VBoxContainer/Label3".text="00100000" $"../../VBoxContainer/Label4".text="01000000" $"../../VBoxContainer/Label5".text="00000010" $"../../../full_action".text="STRING" $"../../VBoxContainer/once".id=4
2303_806435pww/turing_machine
gdscripts/model_gds/model_4.gd
GDScript
mit
729
extends Button # Called when the node enters the scene tree for the first time. func _ready() -> void: pass # Replace with function body. # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta: float) -> void: pass func _on_pressed() -> void: $"../../modelimg".texture=load("res://images/models/model5.png") $"../../decs".texture=load("res://images/questions/dec5.png") $"../../VBoxContainer/Label1".text="a" $"../../VBoxContainer/Label2".text="aa" $"../../VBoxContainer/Label3".text="aaa" $"../../VBoxContainer/Label4".text="aaaa" $"../../VBoxContainer/Label5".text="aaaaa" $"../../../full_action".text="STRING" $"../../VBoxContainer/once".id=5 func _on_label_5_pressed() -> void: pass # Replace with function body.
2303_806435pww/turing_machine
gdscripts/model_gds/model_5.gd
GDScript
mit
778
extends Button var pos=1 var state=0 var retain='o' var id=-1 # Called when the node enters the scene tree for the first time. func _ready() -> void: pass # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta: float) -> void: pass func _on_pressed() -> void: if(id==1): var result = $"../../../full_action".tur_action_1(pos, state) pos=result[0] state=result[1] elif(id==2): var result = $"../../../full_action".tur_action_2(pos, state,retain) pos=result[0] state=result[1] retain=result[2] elif(id==3): var result = $"../../../full_action".tur_action_3(pos, state) pos=result[0] state=result[1] elif(id==4): var result = $"../../../full_action".tur_action_4(pos, state) pos=result[0] state=result[1] elif(id==5): var result = $"../../../full_action".tur_action_5(pos, state,retain) pos=result[0] state=result[1] retain=result[2]
2303_806435pww/turing_machine
gdscripts/once.gd
GDScript
mit
923
extends RichTextLabel # Called when the node enters the scene tree for the first time. func _ready() -> void: pass # Replace with function body. # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta: float) -> void: pass func _on_meta_clicked(meta): OS.shell_open(meta) #func _on_meta_clicked(meta: Variant) -> void: #if meta == "http://godotengine.org" #OS.shell_open(meta)
2303_806435pww/turing_machine
gdscripts/rich_text_label.gd
GDScript
mit
431
extends RichTextLabel # Called when the node enters the scene tree for the first time. func _ready() -> void: pass # Replace with function body. # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta: float) -> void: pass func _on_meta_clicked(meta): OS.shell_open(meta)
2303_806435pww/turing_machine
gdscripts/rich_text_label_2.gd
GDScript
mit
322
extends VBoxContainer # Called when the node enters the scene tree for the first time. func _ready() -> void: pass # Replace with function body. # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta: float) -> void: if Input.is_action_just_pressed("1"): $"../../full_action".text="B"+$Label1.text+"B" $once.pos=1 $once.state=0 elif Input.is_action_just_pressed("2"): $"../../full_action".text="B"+$Label2.text+"B" $once.pos=1 $once.state=0 elif Input.is_action_just_pressed("3"): $"../../full_action".text="B"+$Label3.text+"B" $once.pos=1 $once.state=0 elif Input.is_action_just_pressed("4"): $"../../full_action".text="B"+$Label4.text+"B" $once.pos=1 $once.state=0 elif Input.is_action_just_pressed("5"): $"../../full_action".text="B"+$Label5.text+"B" $once.pos=1 $once.state=0 elif Input.is_action_just_pressed("n"): $once._on_pressed()
2303_806435pww/turing_machine
gdscripts/v_box_container.gd
GDScript
mit
929
extends Window # Called when the node enters the scene tree for the first time. func _ready() -> void: pass # Replace with function body. # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta: float) -> void: pass func _on_close_requested() -> void: $".".visible=false
2303_806435pww/turing_machine
gdscripts/window.gd
GDScript
mit
320
extends Window # Called when the node enters the scene tree for the first time. func _ready() -> void: pass # Replace with function body. # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta: float) -> void: pass func _on_close_requested() -> void: $".".visible=false
2303_806435pww/turing_machine
gdscripts/window_2.gd
GDScript
mit
320
extends Button # Called when the node enters the scene tree for the first time. func _ready() -> void: pass # Replace with function body. # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta: float) -> void: pass func _on_pressed() -> void: $"../../Window2".visible=true
2303_806435pww/turing_machine
help.gd
GDScript
mit
323
extends RichTextLabel # Called when the node enters the scene tree for the first time. func _ready() -> void: pass # Replace with function body. # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta: float) -> void: pass func _on_meta_clicked(meta): OS.shell_open(meta)
2303_806435pww/turing_machine
rich_text_label.gd
GDScript
mit
322
CREATE SEQUENCE wl_comment_seq; CREATE TABLE wl_comment ( id int check (id > 0) NOT NULL DEFAULT NEXTVAL ('wl_comment_seq'), user_id int DEFAULT NULL, comment text, insertedAt timestamp(0) without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP, ip varchar(100) DEFAULT '', link varchar(255) DEFAULT NULL, mail varchar(255) DEFAULT NULL, nick varchar(255) DEFAULT NULL, pid int DEFAULT NULL, rid int DEFAULT NULL, sticky numeric DEFAULT NULL, status varchar(50) NOT NULL DEFAULT '', "like" int DEFAULT NULL, ua text, url varchar(255) DEFAULT NULL, createdAt timestamp(0) without time zone NULL DEFAULT CURRENT_TIMESTAMP, updatedAt timestamp(0) without time zone NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id) ) ; CREATE SEQUENCE wl_counter_seq; CREATE TABLE wl_counter ( id int check (id > 0) NOT NULL DEFAULT NEXTVAL ('wl_counter_seq'), time int DEFAULT NULL, reaction0 int DEFAULT NULL, reaction1 int DEFAULT NULL, reaction2 int DEFAULT NULL, reaction3 int DEFAULT NULL, reaction4 int DEFAULT NULL, reaction5 int DEFAULT NULL, reaction6 int DEFAULT NULL, reaction7 int DEFAULT NULL, reaction8 int DEFAULT NULL, url varchar(255) NOT NULL DEFAULT '', createdAt timestamp(0) without time zone NULL DEFAULT CURRENT_TIMESTAMP, updatedAt timestamp(0) without time zone NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id) ) ; CREATE SEQUENCE wl_users_seq; CREATE TABLE wl_users ( id int check (id > 0) NOT NULL DEFAULT NEXTVAL ('wl_users_seq'), display_name varchar(255) NOT NULL DEFAULT '', email varchar(255) NOT NULL DEFAULT '', password varchar(255) NOT NULL DEFAULT '', type varchar(50) NOT NULL DEFAULT '', label varchar(255) DEFAULT NULL, url varchar(255) DEFAULT NULL, avatar varchar(255) DEFAULT NULL, github varchar(255) DEFAULT NULL, twitter varchar(255) DEFAULT NULL, facebook varchar(255) DEFAULT NULL, google varchar(255) DEFAULT NULL, weibo varchar(255) DEFAULT NULL, qq varchar(255) DEFAULT NULL, "2fa" varchar(32) DEFAULT NULL, createdAt timestamp(0) without time zone NULL DEFAULT CURRENT_TIMESTAMP, updatedAt timestamp(0) without time zone NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id) ) ;
2303_806435pww/waline_moved
assets/waline.pgsql
PLpgSQL
unknown
2,213
import { readdirSync } from 'node:fs'; import { dirname, join } from 'node:path'; import { fileURLToPath } from 'node:url'; const packages = readdirSync( join(dirname(fileURLToPath(import.meta.url)), './packages/'), ); export default { extends: ['@commitlint/config-conventional'], rules: { 'scope-enum': [2, 'always', ['example', 'release', ...packages]], }, };
2303_806435pww/waline_moved
commitlint.config.ts
TypeScript
unknown
377
import { Fancybox } from '@fancyapps/ui/dist/fancybox/fancybox.esm.js'; import type { WalineOptions } from '@vuepress/plugin-comment/client'; import { defineWalineConfig } from '@vuepress/plugin-comment/client'; import { h, onBeforeUnmount, onMounted, resolveComponent } from 'vue'; import { defineClientConfig, useFrontmatter } from 'vuepress/client'; import { Layout } from 'vuepress-theme-hope/client'; import WalineTips from './components/WalineTips.js'; export const walineOptions: WalineOptions = { login: 'force', serverURL: 'https://walinejs.comment.lithub.cc', recaptchaV3Key: '6Lfz4-shAAAAANgsYRR0datkzv6zLIaKrSqfHsiG', comment: true, pageview: true, reaction: true, }; defineWalineConfig(walineOptions); export default defineClientConfig({ enhance({ app }) { // eslint-disable-next-line @typescript-eslint/no-non-null-assertion const CommentService = app.component('CommentService')!; // delete delete app._context.components.CommentService; app.component('CommentService', () => [h(WalineTips), h(CommentService)]); }, setup() { onMounted(() => Fancybox.bind('#vp-comment .wl-content img')); onBeforeUnmount(() => Fancybox.destroy()); }, layouts: { // eslint-disable-next-line @typescript-eslint/naming-convention Layout: () => { const frontmatter = useFrontmatter(); return h( Layout, {}, { contentAfter: () => frontmatter.value.home ? h(resolveComponent('CommentService')) : null, }, ); }, }, });
2303_806435pww/waline_moved
docs/src/.vuepress/client.ts
TypeScript
unknown
1,583
<script setup lang="ts"> import { useLocaleConfig } from '@vuepress/helper/client'; import { ref } from 'vue'; import { type OriginalType, type TransformType, exportRaw, transform, } from '../utils/index.js'; const from = ref<OriginalType | 'typecho'>('valine'); const to = ref<TransformType>('wcloudbase'); const source = ref(''); const i18n = useLocaleConfig({ // eslint-disable-next-line @typescript-eslint/naming-convention '/': { from: '从', to: '迁移至', storage: '存储服务', placeholder: '请将源文件粘贴至此', convert: '转换', title: '友情提示', typecho: `Typecho 用户可以使用 <a href="https://github.com/lizheming/typecho-export-valine" target="_blank" >Export2Valine</a > 插件将评论数据导出成 Valine 数据后直接使用。`, tip: 'Waline 和 Valine 的 LeanCloud 配置是可以共用的,不需要进行数据转换哦!', }, // eslint-disable-next-line @typescript-eslint/naming-convention '/en/': { from: 'Migrate from', to: 'to', storage: 'Storage service', placeholder: 'Please paste your source file here', convert: 'Convert', title: 'Tip', typecho: `Typecho users can use <a href="https://github.com/lizheming/typecho-export-valine" target="_blank" >Export2Valine Plugin</a > to export comment data to Valine format.`, tip: 'The LeanCloud configuration of Waline and Valine can be shared, no data conversion is required!', }, }); const click = (): void => { if (!source.value) { alert('请输入内容'); return; } let data = source.value; if (from.value === 'valine') { // 适配 LeanCloud 国内版导出非标准 JSON 情况 if (/},[\r\n]+/.test(source.value)) { // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment data = JSON.parse(source.value.trim()); } else { // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment data = JSON.parse( `{"results":[ ${source.value .trim() .split(/[\r\n]+/) .join(',')} ]}`, ); } } const act = transform[from.value as OriginalType][to.value]; if (typeof act === 'function') { let text = act(data); if (typeof text !== 'string') { text = JSON.stringify(text, null, '\t'); } exportRaw( 'output.' + (to.value !== 'wsql' ? 'json' : 'csv'), text as string, ); } }; </script> <template> <form> <div class="selector"> <div class="input-group"> <label for="from">{{ i18n.from }}&nbsp;</label> <select id="from" v-model="from"> <option value="valine">Valine</option> <option value="disqus">Disqus</option> <option value="twikoo">Twikoo</option> <option value="typecho">Typecho</option> <option value="artalk">Artalk</option> <option value="commento">Commento</option> </select> </div> <div class="input-group"> <label for="to">&nbsp;{{ i18n.to }}&nbsp;</label> <select id="to" v-model="to"> <option value="wleancloud">Waline LeanCloud</option> <option value="wcloudbase">Waline CloudBase</option> <option value="wsql">Waline MySQL/PostgreSQL/SQLite</option> <option value="wgithub">Github</option> </select> </div> <div class="input-group">&nbsp;{{ i18n.storage }}</div> </div> <div v-if="from === 'typecho'" class="custom-block warning"> <p class="custom-block-title">{{ i18n.tip }}</p> <!-- eslint-disable-next-line vue/no-v-html --> <p v-html="i18n.typecho" /> </div> <div v-else-if="from === 'valine' && to === 'wleancloud'" class="custom-block warning" > <p class="custom-block-title">{{ i18n.tip }}</p> <p v-text="i18n.tip" /> </div> <div v-else> <textarea v-model="source" :placeholder="i18n.placeholder"></textarea> <button type="submit" @click.prevent="click">{{ i18n.convert }}</button> </div> </form> </template> <style lang="scss" scoped> textarea { width: 100%; height: 200px; border: 1px solid var(--vp-c-border); border-radius: 3px; padding: 10px; outline: none; } select { padding: 4px 8px; font-size: 0.8em; border: 1px solid var(--vp-c-border); border-radius: 4px; outline: none; } button { font-size: 17px; line-height: 2em; padding: 0 20px; border: none; background: var(--vp-c-accent-bg); color: var(--vp-c-white); border-radius: 3px; cursor: pointer; } .selector { margin-bottom: 20px; } .input-group { display: inline-block; font-size: 20px; } </style>
2303_806435pww/waline_moved
docs/src/.vuepress/components/MigrationTool.vue
Vue
unknown
4,782
@use 'vuepress-theme-hope/styles/wrapper'; .waline-tips-wrapper { @include wrapper.horizontal-wrapper(); @media print { display: none; } } .waline-tips { margin: 1rem auto; padding: 10px; border-radius: 8px; background: var(--warning-c-soft); color: var(--warning-c-text); }
2303_806435pww/waline_moved
docs/src/.vuepress/components/WalineTips.scss
SCSS
unknown
298
import type { VNode } from 'vue'; import { computed, defineComponent, h } from 'vue'; import { usePageFrontmatter, useRouteLocale } from 'vuepress/client'; import type { ThemeNormalPageFrontmatter, ThemeProjectHomePageFrontmatter, } from 'vuepress-theme-hope'; import './WalineTips.scss'; const i18n: Record<string, string> = { '/': '友情提示:评论区仅作评论展示,如有问题咨询请去 <a href="https://github.com/walinejs/waline/discussions" target="_blank">Github Discussion</a> 中提问。', '/en/': 'TIPS: The comment area is only for demo. If you have any questions, please go to <a href="https://github.com/walinejs/waline/discussions" target="_blank">Github Discussion</a> to ask.', }; export default defineComponent({ name: 'WalineTips', setup() { const frontmatter = usePageFrontmatter< ThemeProjectHomePageFrontmatter | ThemeNormalPageFrontmatter >(); const routeLocale = useRouteLocale(); const isHome = computed(() => frontmatter.value.home ?? false); const text = computed(() => i18n[routeLocale.value]); return (): VNode => h( 'div', { class: ['waline-tips-wrapper', { home: isHome.value }] }, h('div', { class: 'waline-tips', innerHTML: text.value, }), ); }, });
2303_806435pww/waline_moved
docs/src/.vuepress/components/WalineTips.ts
TypeScript
unknown
1,315
import { viteBundler } from '@vuepress/bundler-vite'; import { defineUserConfig } from 'vuepress'; import { path } from 'vuepress/utils'; import theme from './theme.js'; export default defineUserConfig({ locales: { '/': { lang: 'zh-CN', title: 'Waline', description: '一款简洁、安全的评论系统。', }, '/en/': { lang: 'en-US', title: 'Waline', description: 'A Simple, Safe Comment System.', }, }, bundler: viteBundler({ viteOptions: { ssr: { noExternal: ['@fancyapps/ui'], }, }, }), markdown: { importCode: { handleImportPath: (str) => str === '@waline/api/types' ? path.resolve(__dirname, '../../../packages/api/dist/api.d.ts') : str, }, }, theme, alias: { '@MigrationTool': path.resolve(__dirname, './components/MigrationTool.vue'), }, });
2303_806435pww/waline_moved
docs/src/.vuepress/config.ts
TypeScript
unknown
903
import { navbar } from 'vuepress-theme-hope'; export const zhNavbarConfig = navbar([ '/guide/get-started/', '/cookbook/', { text: '迁移', icon: 'migration', prefix: '/migration/', children: ['v3', 'v2', 'valine', 'tool'], }, { text: '参考', icon: 'reference', prefix: '/reference/', children: [ 'api/', { text: '客户端', prefix: 'client/', children: ['api', 'props', 'file', 'style'], }, { text: '服务端', prefix: 'server/', children: ['api', 'config', 'env', 'plugin'], }, ], }, { text: '高级', icon: 'advanced', prefix: '/advanced/', children: [ 'intro', 'design', 'ecosystem', 'faq', 'contribution', 'privacy', ], }, ]); export const enNavbarConfig = navbar([ '/en/guide/get-started/', '/en/cookbook/', { text: 'Migration', icon: 'migration', prefix: '/en/migration/', children: ['v3', 'v2', 'valine', 'tool'], }, { text: 'Reference', icon: 'reference', prefix: '/en/reference/', children: [ 'api/', { text: 'Client', prefix: 'client/', children: ['api', 'props', 'file', 'style'], }, { text: 'server', prefix: 'server/', children: ['api', 'config', 'env', 'plugin'], }, ], }, { text: 'Advanced', icon: 'advanced', prefix: '/en/advanced/', children: [ 'intro', 'design', 'ecosystem', 'faq', 'contribution', 'privacy', ], }, ]);
2303_806435pww/waline_moved
docs/src/.vuepress/navbar.ts
TypeScript
unknown
1,617
google-site-verification: google8b3d888472d9b77d.html
2303_806435pww/waline_moved
docs/src/.vuepress/public/google8b3d888472d9b77d.html
HTML
unknown
54
import { sidebar } from 'vuepress-theme-hope'; export const zhSidebarConfig = sidebar({ '/': [ { text: '指南', icon: 'creative', prefix: 'guide/', children: ['get-started/', 'features/', 'database', 'deploy/'], }, 'cookbook/', { text: '参考', icon: 'reference', prefix: 'reference/', children: [ 'api/', { text: '客户端', icon: 'client', prefix: 'client/', children: ['api', 'props', 'file', 'style'], }, { text: '服务端', icon: 'server', prefix: 'server/', children: ['api', 'config', 'env', 'plugin'], }, ], }, { text: '迁移', icon: 'migration', prefix: 'migration/', collapsible: true, children: ['v3', 'v2', 'valine', 'tool'], }, 'advanced/', ], '/advanced/': 'structure', '/cookbook/': 'structure', '/guide/': 'structure', }); export const enSidebarConfig = sidebar({ '/en/': [ { text: 'Guide', icon: 'creative', prefix: 'guide/', children: ['get-started/', 'features/', 'database', 'deploy/'], }, 'cookbook/', { text: 'Reference', icon: 'reference', prefix: 'reference/', children: [ 'api/', { text: 'Client', icon: 'client', prefix: 'client/', children: ['api', 'props', 'file', 'style'], }, { text: 'server', icon: 'server', prefix: 'server/', children: ['api', 'config', 'env', 'plugin'], }, ], }, { text: 'Migration', icon: 'migration', prefix: 'migration/', collapsible: true, children: ['v3', 'v2', 'valine', 'tool'], }, 'advanced/', ], '/en/advanced/': 'structure', '/en/cookbook/': 'structure', '/en/guide/': 'structure', });
2303_806435pww/waline_moved
docs/src/.vuepress/sidebar.ts
TypeScript
unknown
1,952
$theme-color: #4e9def;
2303_806435pww/waline_moved
docs/src/.vuepress/styles/config.scss
SCSS
unknown
23
/** Copied from fancybox */ :root { --f-spinner-width: 36px; --f-spinner-height: 36px; --f-spinner-color-1: rgba(0, 0, 0, 0.1); --f-spinner-color-2: rgba(17, 24, 28, 0.8); --f-spinner-stroke: 2.75; } .f-spinner { margin: auto; padding: 0; width: var(--f-spinner-width); height: var(--f-spinner-height); } .f-spinner svg { width: 100%; height: 100%; vertical-align: top; animation: f-spinner-rotate 2s linear infinite; } .f-spinner svg * { stroke-width: var(--f-spinner-stroke); fill: none; } .f-spinner svg *:first-child { stroke: var(--f-spinner-color-1); } .f-spinner svg *:last-child { stroke: var(--f-spinner-color-2); animation: f-spinner-dash 2s ease-in-out infinite; } @keyframes f-spinner-rotate { 100% { transform: rotate(360deg); } } @keyframes f-spinner-dash { 0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; } 50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; } 100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; } } .f-zoomInUp { animation: 0.2s ease-out 0.1s both f-zoomInUp; } .f-zoomOutDown { animation: 0.2s ease-in both f-zoomOutDown; } @keyframes f-zoomInUp { from { transform: scale(0.975) translate3d(0, 16px, 0); opacity: 0; } to { transform: scale(1) translate3d(0, 0, 0); opacity: 1; } } @keyframes f-zoomOutDown { to { transform: scale(0.975) translate3d(0, -16px, 0); opacity: 0; } } .f-throwOutUp { animation: 0.175s ease-out both f-throwOutUp; } .f-throwOutDown { animation: 0.175s ease-out both f-throwOutDown; } @keyframes f-throwOutUp { to { transform: translate3d(0, -150px, 0); opacity: 0; } } @keyframes f-throwOutDown { to { transform: translate3d(0, 150px, 0); opacity: 0; } } .f-fadeIn { animation: 0.2s ease both f-fadeIn; z-index: 2; } .f-fadeOut { animation: 0.2s ease both f-fadeOut; z-index: 1; } @keyframes f-fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes f-fadeOut { 100% { opacity: 0; } } .f-fadeSlowIn { animation: 0.5s ease both f-fadeSlowIn; z-index: 2; } .f-fadeSlowOut { animation: 0.5s ease both f-fadeSlowOut; z-index: 1; } @keyframes f-fadeSlowIn { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes f-fadeSlowOut { 100% { opacity: 0; } } .f-fadeFastIn { animation: 0.2s ease-out both f-fadeFastIn; z-index: 2; } .f-fadeFastOut { animation: 0.2s ease-out both f-fadeFastOut; z-index: 2; } @keyframes f-fadeFastIn { 0% { opacity: 0.75; } 100% { opacity: 1; } } @keyframes f-fadeFastOut { 100% { opacity: 0; } } .f-crossfadeIn { animation: 0.2s ease-out both f-crossfadeIn; z-index: 2; } .f-crossfadeOut { animation: 0.1s linear 0.1s both f-crossfadeOut; z-index: 1; } @keyframes f-crossfadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes f-crossfadeOut { 100% { opacity: 0; } } .f-slideIn.from-next { animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext; } .f-slideIn.from-prev { animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev; } .f-slideOut.to-next { animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext; } .f-slideOut.to-prev { animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev; } @keyframes f-slideInPrev { 0% { transform: translateX(100%); } 100% { transform: translate3d(0, 0, 0); } } @keyframes f-slideInNext { 0% { transform: translateX(-100%); } 100% { transform: translate3d(0, 0, 0); } } @keyframes f-slideOutNext { 100% { transform: translateX(-100%); } } @keyframes f-slideOutPrev { 100% { transform: translateX(100%); } } .f-classicIn.from-next { animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext; z-index: 2; } .f-classicIn.from-prev { animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev; z-index: 2; } .f-classicOut.to-next { animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext; z-index: 1; } .f-classicOut.to-prev { animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev; z-index: 1; } @keyframes f-classicInNext { 0% { transform: translateX(-75px); opacity: 0; } 100% { transform: translate3d(0, 0, 0); opacity: 1; } } @keyframes f-classicInPrev { 0% { transform: translateX(75px); opacity: 0; } 100% { transform: translate3d(0, 0, 0); opacity: 1; } } @keyframes f-classicOutNext { 100% { transform: translateX(-75px); opacity: 0; } } @keyframes f-classicOutPrev { 100% { transform: translateX(75px); opacity: 0; } } :root { --f-button-width: 40px; --f-button-height: 40px; --f-button-border: 0; --f-button-border-radius: 0; --f-button-color: #374151; --f-button-bg: #f8f8f8; --f-button-hover-bg: #e0e0e0; --f-button-active-bg: #d0d0d0; --f-button-shadow: none; --f-button-transition: all 0.15s ease; --f-button-transform: none; --f-button-svg-width: 20px; --f-button-svg-height: 20px; --f-button-svg-stroke-width: 1.5; --f-button-svg-fill: none; --f-button-svg-filter: none; --f-button-svg-disabled-opacity: 0.65; } .f-button { display: flex; justify-content: center; align-items: center; box-sizing: content-box; position: relative; margin: 0; padding: 0; width: var(--f-button-width); height: var(--f-button-height); border: var(--f-button-border); border-radius: var(--f-button-border-radius); color: var(--f-button-color); background: var(--f-button-bg); box-shadow: var(--f-button-shadow); pointer-events: all; cursor: pointer; transition: var(--f-button-transition); } @media (hover: hover) { .f-button:hover { color: var(--f-button-hover-color); background-color: var(--f-button-hover-bg); } } .f-button:active:not([disabled]) { background-color: var(--f-button-active-bg); } .f-button svg { width: var(--f-button-svg-width); height: var(--f-button-svg-height); fill: var(--f-button-svg-fill); stroke: currentColor; stroke-width: var(--f-button-svg-stroke-width); stroke-linecap: round; stroke-linejoin: round; transform: var(--f-button-transform); filter: var(--f-button-svg-filter); pointer-events: none; } .f-button[disabled] { cursor: default; } .f-button[disabled] svg { opacity: var(--f-button-svg-disabled-opacity); } .f-carousel__nav .f-button.is-prev, .f-carousel__nav .f-button.is-next, .fancybox__nav .f-button.is-prev, .fancybox__nav .f-button.is-next { position: absolute; z-index: 1; } .is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-next { top: 50%; transform: translateY(-50%); } .is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-prev { left: var(--f-button-prev-pos); } .is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-next { right: var(--f-button-next-pos); } .is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev, .is-horizontal.is-rtl .fancybox__nav .f-button.is-prev { left: auto; right: var(--f-button-next-pos); } .is-horizontal.is-rtl .f-carousel__nav .f-button.is-next, .is-horizontal.is-rtl .fancybox__nav .f-button.is-next { right: auto; left: var(--f-button-prev-pos); } .is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-next { top: auto; left: 50%; transform: translateX(-50%); } .is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-prev { top: var(--f-button-next-pos); } .is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-next { bottom: var(--f-button-next-pos); } .is-vertical .f-carousel__nav .f-button.is-prev svg, .is-vertical .f-carousel__nav .f-button.is-next svg, .is-vertical .fancybox__nav .f-button.is-prev svg, .is-vertical .fancybox__nav .f-button.is-next svg { transform: rotate(90deg); } html.with-fancybox { scroll-behavior: auto; width: auto; overflow: visible; } html.with-fancybox body { touch-action: none; } html.with-fancybox body.compensate-for-scrollbar { width: auto; overflow: hidden !important; overscroll-behavior-y: none; margin-right: var(--fancybox-scrollbar-compensate, 0); } .fancybox__container { --fancybox-color: #dbdbdb; --fancybox-hover-color: #fff; --fancybox-bg: rgba(24, 24, 27, 0.98); --fancybox-slide-gap: 10px; --f-spinner-width: 50px; --f-spinner-height: 50px; --f-spinner-color-1: rgba(255, 255, 255, 0.1); --f-spinner-color-2: #bbb; --f-spinner-stroke: 3.65; position: fixed; top: 0; left: 0; bottom: 0; right: 0; direction: ltr; display: flex; flex-direction: column; box-sizing: border-box; margin: 0; padding: 0; color: #f8f8f8; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); overflow: visible; z-index: 1050; outline: none; -webkit-text-size-adjust: 100%; -moz-text-size-adjust: none; -ms-text-size-adjust: 100%; text-size-adjust: 100%; } .fancybox__container *, .fancybox__container *::before, .fancybox__container *::after { box-sizing: inherit; } .fancybox__backdrop { position: fixed; top: 0; left: 0; bottom: 0; right: 0; z-index: -1; background: var(--fancybox-bg); opacity: var(--fancybox-opacity, 1); will-change: opacity; } .fancybox__carousel { position: relative; box-sizing: border-box; flex: 1; min-height: 0; z-index: 10; overflow-y: visible; overflow-x: clip; } .fancybox__viewport { width: 100%; height: 100%; } .fancybox__track { display: flex; margin: 0 auto; height: 100%; transform: matrix(1, 0, 0, 1, 0, 0); will-change: transform; } .fancybox__slide { flex: 0 0 auto; position: relative; display: flex; flex-direction: column; align-items: center; margin: 0 var(--fancybox-slide-gap) 0 0; padding: 4px; width: 100%; height: 100%; overflow: auto; } .fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn { padding-top: 40px; } .fancybox__slide.has-iframe, .fancybox__slide.has-video, .fancybox__slide.has-html5video { overflow: hidden; } .fancybox__slide.has-image { overflow: hidden; } .fancybox__slide.has-image.is-selected { overflow: visible; } .fancybox__slide::before, .fancybox__slide::after { content: ''; flex: 0 0 0; margin: auto; } .fancybox__content { align-self: center; display: flex; flex-direction: column; position: relative; margin: 0; padding: 2rem; max-width: 100%; color: var(--fancybox-content-color, #374151); background: var(--fancybox-content-bg, #fff); cursor: default; border-radius: 0; z-index: 20; } .is-loading .fancybox__content { opacity: 0; } .is-draggable .fancybox__content { cursor: move; cursor: grab; } .can-zoom_in .fancybox__content { cursor: zoom-in; } .can-zoom_out .fancybox__content { cursor: zoom-out; } .is-dragging .fancybox__content { cursor: move; cursor: grabbing; } .fancybox__content [data-selectable], .fancybox__content [contenteditable] { cursor: auto; } .fancybox__slide.has-image > .fancybox__content { padding: 0; background: rgba(0, 0, 0, 0); min-height: 1px; background-repeat: no-repeat; background-size: contain; background-position: center center; transition: none; transform: matrix(1, 0, 0, 1, 0, 0); will-change: transform, width, height; } .fancybox-image { margin: auto; display: block; width: 100%; height: 100%; min-height: 0; object-fit: contain; user-select: none; } .hide-image .fancybox-image { opacity: 0; } .fancybox__caption { align-self: center; max-width: 100%; flex-shrink: 0; margin: 0; padding: 14px 0 4px 0; overflow-wrap: anywhere; line-height: 1.375; color: var(--fancybox-color, currentColor); opacity: var(--fancybox-opacity, 1); cursor: auto; visibility: visible; } .is-loading .fancybox__caption, .is-closing .fancybox__caption { opacity: 0; visibility: hidden; } .is-compact .fancybox__caption { padding-bottom: 0; } .f-button.is-close-btn { --f-button-svg-stroke-width: 2; position: absolute; top: 0; right: 8px; z-index: 40; } .fancybox__content > .f-button.is-close-btn { --f-button-color: #fff; --f-button-bg: transparent; --f-button-hover-bg: transparent; --f-button-active-bg: transparent; --f-button-svg-width: 22px; --f-button-svg-height: 22px; position: absolute; top: -38px; right: 0; width: 34px; height: 34px; border-radius: 4px; color: var(--fancybox-color, #fff); opacity: 0.75; } .is-loading .fancybox__content > .f-button.is-close-btn { visibility: hidden; } .is-zooming-out .fancybox__content > .f-button.is-close-btn { visibility: hidden; } .fancybox__content > .f-button.is-close-btn:hover { opacity: 1; } .fancybox__footer { padding: 0; margin: 0; position: relative; } .fancybox__footer .fancybox__caption { width: 100%; padding: 24px; opacity: var(--fancybox-opacity, 1); transition: all 0.25s ease; } .is-compact .fancybox__footer { position: absolute; bottom: 0; left: 0; right: 0; z-index: 20; background: rgba(24, 24, 27, 0.5); } .is-compact .fancybox__footer .fancybox__caption { padding: 12px; } .is-compact .fancybox__content > .f-button.is-close-btn { --f-button-svg-width: 18px; --f-button-svg-height: 18px; --f-button-svg-filter: none; top: 5px; right: 5px; border-radius: 50%; color: #fff; background: rgba(0, 0, 0, 0.6); } .fancybox__nav { --f-button-width: 50px; --f-button-height: 50px; --f-button-border: 0; --f-button-border-radius: 50%; --f-button-color: var(--fancybox-color); --f-button-hover-color: var(--fancybox-hover-color); --f-button-bg: transparent; --f-button-hover-bg: rgba(24, 24, 27, 0.3); --f-button-active-bg: rgba(24, 24, 27, 0.5); --f-button-shadow: none; --f-button-transition: all 0.15s ease; --f-button-transform: none; --f-button-svg-width: 26px; --f-button-svg-height: 26px; --f-button-svg-stroke-width: 2.5; --f-button-svg-fill: none; --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5)); --f-button-svg-disabled-opacity: 0.65; --f-button-next-pos: 1rem; --f-button-prev-pos: 1rem; opacity: var(--fancybox-opacity, 1); } .fancybox__nav :focus { outline: none; } .fancybox__nav :focus-visible { box-shadow: inset 0 0 0 1px #f8f8f8; } .fancybox__nav .f-button:before { position: absolute; content: ''; top: -30px; right: -20px; left: -20px; bottom: -30px; z-index: 1; } .is-idle .fancybox__nav { animation: 0.15s ease-out both f-fadeOut; } .is-idle.is-compact .fancybox__footer { animation: 0.15s ease-out both f-fadeOut; } .fancybox__slide > .f-spinner { position: absolute; top: 50%; left: 50%; margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5)); z-index: 30; cursor: pointer; } .fancybox-protected { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 40; user-select: none; } .fancybox-ghost { position: absolute; top: 0; left: 0; width: 100%; height: 100%; min-height: 0; object-fit: contain; z-index: 40; user-select: none; pointer-events: none; } .fancybox-focus-guard { position: fixed; top: 1px; left: 1px; width: 1px; height: 0px; padding: 0px; margin: -1px; overflow: hidden; clip: rect(0px, 0px, 0px, 0px); white-space: nowrap; border-width: 0px; } .fancybox__container:not([aria-hidden]) { opacity: 0; } .fancybox__container.is-animated[aria-hidden='false'] > *:not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden='false'] .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden='false'] .fancybox__slide > *:not(.fancybox__content) { animation: 0.25s ease 0.1s backwards f-fadeIn; } .fancybox__container.is-animated[aria-hidden='false'] .fancybox__backdrop { animation: 0.35s ease backwards f-fadeIn; } .fancybox__container.is-animated[aria-hidden='true'] > *:not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden='true'] .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden='true'] .fancybox__slide > *:not(.fancybox__content) { animation: 0.15s ease forwards f-fadeOut; } .fancybox__container.is-animated[aria-hidden='true'] .fancybox__backdrop { animation: 0.35s ease forwards f-fadeOut; } .has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content { max-width: 100%; flex-shrink: 1; min-height: 1px; overflow: visible; } .has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content { width: 100%; height: 100%; } .fancybox__container:not(.is-compact) .has-iframe .fancybox__content, .fancybox__container:not(.is-compact) .has-map .fancybox__content, .fancybox__container:not(.is-compact) .has-pdf .fancybox__content { width: calc(100% - 120px); height: 90%; } .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content { width: 960px; height: 540px; max-width: 100%; max-height: 100%; } .has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content { padding: 0; background: rgba(24, 24, 27, 0.9); color: #fff; } .has-map .fancybox__content { background: #e5e3df; } .fancybox__html5video, .fancybox__iframe { border: 0; display: block; height: 100%; width: 100%; background: rgba(0, 0, 0, 0); } .fancybox-placeholder { border: 0 !important; clip: rect(1px, 1px, 1px, 1px) !important; -webkit-clip-path: inset(50%) !important; clip-path: inset(50%) !important; height: 1px !important; margin: -1px !important; overflow: hidden !important; padding: 0 !important; position: absolute !important; width: 1px !important; white-space: nowrap !important; } .f-thumbs { --f-thumb-width: 96px; --f-thumb-height: 72px; --f-thumb-gap: 4px; --f-thumb-outline: 0; --f-thumb-outline-color: #5eb0ef; --f-thumb-opacity: 1; --f-thumb-hover-opacity: 1; --f-thumb-selected-opacity: 1; --f-thumb-border-radius: 2px; --f-thumb-offset: 0px; position: relative; margin: 0; padding: 0 var(--f-thumb-gap); overflow: hidden; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); user-select: none; perspective: 1000px; transform: translateZ(0); } .f-thumbs.is-classic { --f-thumb-opacity: 0.5; --f-thumb-hover-opacity: 1; --f-thumb-selected-opacity: 1; } .f-thumbs.is-modern { --f-thumb-extra-gap: 20px; --f-thumb-clip-width: 46px; } .f-thumbs .f-spinner { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 2px; background-image: linear-gradient(#ebeff2, #e2e8f0); z-index: -1; } .f-thumbs .f-spinner svg { display: none; } .f-thumbs__viewport { width: 100%; height: auto; overflow: hidden; transform: translate3d(0, 0, 0); backface-visibility: hidden; } .f-thumbs__track { display: flex; margin: 0 auto; padding: 8px 0 12px 0; } .f-thumbs__slide { position: relative; flex: 0 0 auto; box-sizing: content-box; display: flex; align-items: center; justify-content: center; padding: 0; margin: 0; width: var(--f-thumb-width); min-width: var(--f-thumb-width); height: var(--f-thumb-height); overflow: visible; cursor: pointer; } .f-thumbs__slide.is-loading img { opacity: 0; } .is-classic .f-thumbs__slide { margin: 0 var(--f-thumb-gap) 0 0; } .is-modern .f-thumbs__track { width: max-content; } .is-modern .f-thumbs__track::before { content: ''; position: absolute; top: 0; bottom: 0; left: calc(var(--left, 0) * 1px); width: calc(100% - var(--width, 0) * 1px); cursor: pointer; } .is-modern .f-thumbs__slide { --clip-path: inset( 0 calc( (var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0)) * 0.5 * (1 - var(--progress, 0)) ) round var(--f-thumb-border-radius, 0) ); transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0); transition: none; pointer-events: none; } .is-modern .f-thumbs__slide:focus-within { filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color)); } .is-modern .f-thumbs__slide > * { clip-path: var(--clip-path); will-change: clip-path; } .is-modern.is-resting .f-thumbs__slide { transition: all 0.33s ease; } .is-modern.is-resting .f-thumbs__slide > * { transition: all 0.33s ease; } .f-thumbs__slide__button { appearance: none; width: 100%; height: 100%; margin: 0; padding: 0; border: 0; position: relative; border-radius: var(--f-thumb-border-radius); overflow: hidden; background: rgba(0, 0, 0, 0); outline: none; cursor: pointer; pointer-events: auto; touch-action: manipulation; transition: opacity 0.2s ease; opacity: var(--f-thumb-opacity); } .f-thumbs__slide__button:hover { opacity: var(--f-thumb-hover-opacity); } .f-thumbs__slide__button:focus-visible { opacity: var(--f-thumb-selected-opacity); } .is-nav-selected .f-thumbs__slide__button { opacity: var(--f-thumb-selected-opacity); } .is-nav-selected .f-thumbs__slide__button::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: auto; bottom: 0; border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent); border-radius: var(--f-thumb-border-radius); animation: f-fadeIn 0.2s ease; } .f-thumbs__slide__img { position: absolute; overflow: hidden; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; padding: var(--f-thumb-offset); box-sizing: border-box; object-fit: cover; } .fancybox__thumbs { position: relative; opacity: var(--fancybox-opacity, 1); transition: all 0.25s ease; } .fancybox__thumbs.is-modern { --f-thumb-outline: 2px; --f-thumb-outline-color: #ededed; --f-thumb-opacity: 1; --f-thumb-hover-opacity: 1; --f-thumb-border-radius: 2px; --f-thumb-width: 96px; --f-thumb-clip-width: 46px; --f-thumb-height: 72px; --f-thumb-gap: 6px; --f-thumb-extra-gap: 20px; } .fancybox__thumbs.is-classic { --f-thumb-outline: 2px; --f-thumb-outline-color: #ededed; --f-thumb-opacity: 0.5; --f-thumb-hover-opacity: 1; --f-thumb-border-radius: 2px; --f-thumb-width: 96px; --f-thumb-height: 72px; --f-thumb-gap: 8px; } .is-compact .fancybox__thumbs { --f-thumb-width: 64px; --f-thumb-clip-width: 32px; --f-thumb-height: 48px; --f-thumb-extra-gap: 12px; } .is-closing .fancybox__thumbs { transition: none !important; } .fancybox__thumbs.is-hidden { height: 0px !important; } .fancybox__thumbs .f-spinner { background-image: linear-gradient( rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05) ); } .fancybox__toolbar { --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94)); --f-button-width: 46px; --f-button-height: 46px; --f-button-color: var(--fancybox-color); --f-button-hover-color: var(--fancybox-hover-color); --f-button-bg: rgba(24, 24, 27, 0.65); --f-button-hover-bg: rgba(70, 70, 73, 0.65); --f-button-active-bg: rgba(90, 90, 93, 0.65); --f-button-border-radius: 0; --f-button-svg-width: 24px; --f-button-svg-height: 24px; --f-button-svg-stroke-width: 1.5; --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15)); --f-button-svg-fill: none; --f-button-svg-disabled-opacity: 0.65; display: flex; flex-direction: row; justify-content: space-between; margin: 0; padding: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI Adjusted', 'Segoe UI', 'Liberation Sans', sans-serif; color: var(--fancybox-color, currentColor); opacity: var(--fancybox-opacity, 1); text-shadow: var( --fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5) ); pointer-events: none; z-index: 20; } .fancybox__toolbar :focus-visible { z-index: 1; } .fancybox__toolbar.is-absolute, .is-compact .fancybox__toolbar { position: absolute; top: 0; left: 0; right: 0; } .is-idle .fancybox__toolbar { pointer-events: none; animation: 0.15s ease-out both f-fadeOut; } .fancybox__toolbar__column { display: flex; flex-direction: row; flex-wrap: wrap; align-content: flex-start; } .fancybox__toolbar__column.is-left, .fancybox__toolbar__column.is-right { flex-grow: 1; flex-basis: 0; } .fancybox__toolbar__column.is-right { display: flex; justify-content: flex-end; flex-wrap: nowrap; } .fancybox__infobar { padding: 0 5px; line-height: var(--f-button-height); text-align: center; font-size: 17px; font-variant-numeric: tabular-nums; -webkit-font-smoothing: subpixel-antialiased; cursor: default; user-select: none; } .fancybox__infobar span { padding: 0 5px; } .fancybox__infobar:not(:first-child):not(:last-child) { background: var(--f-button-bg); } [data-fancybox-toggle-slideshow] { position: relative; } [data-fancybox-toggle-slideshow] .f-progress { height: 100%; opacity: 0.3; } [data-fancybox-toggle-slideshow] svg g:first-child { display: flex; } [data-fancybox-toggle-slideshow] svg g:last-child { display: none; } .has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child { display: none; } .has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child { display: flex; } [data-fancybox-toggle-fullscreen] svg g:first-child { display: flex; } [data-fancybox-toggle-fullscreen] svg g:last-child { display: none; } :fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child { display: none; } :fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child { display: flex; } .f-progress { position: absolute; top: 0; left: 0; right: 0; height: 3px; transform: scaleX(0); transform-origin: 0; transition-property: transform; transition-timing-function: linear; background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff)); z-index: 30; user-select: none; pointer-events: none; }
2303_806435pww/waline_moved
docs/src/.vuepress/styles/fancybox.scss
SCSS
unknown
26,502
@use 'fancybox'; .waline-wrapper { // fancybox img { cursor: zoom-in; } }
2303_806435pww/waline_moved
docs/src/.vuepress/styles/index.scss
SCSS
unknown
85
import { hopeTheme } from 'vuepress-theme-hope'; import { enNavbarConfig, zhNavbarConfig } from './navbar.js'; import { enSidebarConfig, zhSidebarConfig } from './sidebar.js'; export default hopeTheme( { hostname: 'https://waline.js.org', favicon: '/favicon.ico', logo: '/logo.png', repo: 'walinejs/waline', docsDir: 'docs/src', docsBranch: 'main', pageInfo: ['ReadingTime', 'PageView'], contributors: false, locales: { '/': { navbar: zhNavbarConfig, sidebar: zhSidebarConfig, footer: 'GPL-2.0 协议 | Copyright © 2020-present lizheming', displayFooter: true, }, '/en/': { navbar: enNavbarConfig, sidebar: enSidebarConfig, footer: 'GPL-2.0 LICENSE | Copyright © 2020-present lizheming', displayFooter: true, }, }, markdown: { codeTabs: true, figure: true, math: { type: 'mathjax', }, sub: true, sup: true, tasklist: true, }, plugins: { comment: { provider: 'Waline', locales: { '/': { admin: '可爱的管理员', level0: '锻体', level1: '炼气', level2: '筑基', level3: '金丹', level4: '元婴', level5: '化神', }, '/en/': { admin: 'GM', level0: 'Dwarves', level1: 'Hobbits', level2: 'Ents', level3: 'Wizards', level4: 'Elves', level5: 'Maiar', }, }, }, components: { components: ['BiliBili', 'VidStack'], }, docsearch: { appId: 'W34KABV4KM', apiKey: 'd189586c601d439f9247bdaf95b3555f', indexName: 'waline', }, icon: { assets: '//at.alicdn.com/t/c/font_3180165_6o97v6oir2j.css', }, }, }, { custom: true }, );
2303_806435pww/waline_moved
docs/src/.vuepress/theme.ts
TypeScript
unknown
1,955
var CSV = {}; !(function (p) { 'use strict'; p.__type__ = 'csv'; var o = ('undefined' != typeof jQuery && jQuery.Deferred) || ('undefined' != typeof _ && _.Deferred) || function () { var t, n, e = new Promise(function (e, r) { (t = e), (n = r); }); return { resolve: t, reject: n, promise: function () { return e; }, }; }; (p.fetch = function (t) { var n = new o(); if (t.file) { var e = new FileReader(), r = t.encoding || 'UTF-8'; (e.onload = function (e) { var r = p.extractFields(p.parse(e.target.result, t), t); (r.useMemoryStore = !0), (r.metadata = { filename: t.file.name }), n.resolve(r); }), (e.onerror = function (e) { n.reject({ error: { message: 'Failed to load file. Code: ' + e.target.error.code, }, }); }), e.readAsText(t.file, r); } else if (t.data) { var i = p.extractFields(p.parse(t.data, t), t); (i.useMemoryStore = !0), n.resolve(i); } else if (t.url) { ( window.fetch || function (e) { var r = jQuery.get(e), t = { then: function (e) { return r.done(e), t; }, catch: function (e) { return r.fail(e), t; }, }; return t; } )(t.url) .then(function (e) { return e.text ? e.text() : e; }) .then(function (e) { var r = p.extractFields(p.parse(e, t), t); (r.useMemoryStore = !0), n.resolve(r); }) .catch(function (e, r) { n.reject({ error: { message: 'Failed to load file. ' + e.statusText + '. Code: ' + e.status, request: e, }, }); }); } return n.promise(); }), (p.extractFields = function (e, r) { return !0 !== r.noHeaderRow && 0 < e.length ? { fields: e[0], records: e.slice(1) } : { records: e }; }), (p.normalizeDialectOptions = function (e) { var r = { delimiter: ',', doublequote: !0, lineterminator: '\n', quotechar: '"', skipinitialspace: !0, skipinitialrows: 0, }; for (var t in e) 'trim' === t ? (r.skipinitialspace = e.trim) : (r[t.toLowerCase()] = e[t]); return r; }), (p.parse = function (e, r) { (r && (!r || r.lineterminator)) || (e = p.normalizeLineTerminator(e, r)); var t, n, i = p.normalizeDialectOptions(r); (t = e), (n = i.lineterminator), (e = t.charAt(t.length - n.length) !== n ? t : t.substring(0, t.length - n.length)); var o, a, l = '', s = !1, u = !1, c = '', f = [], d = []; for ( a = function (e) { return ( !0 !== u && ('' === e ? (e = null) : !0 === i.skipinitialspace && (e = v(e)), h.test(e) ? (e = parseInt(e, 10)) : m.test(e) && (e = parseFloat(e, 10))), e ); }, o = 0; o < e.length; o += 1 ) (l = e.charAt(o)), !1 !== s || (l !== i.delimiter && l !== i.lineterminator) ? l !== i.quotechar ? (c += l) : s ? e.charAt(o + 1) === i.quotechar ? ((c += i.quotechar), (o += 1)) : (s = !1) : (u = s = !0) : ((c = a(c)), f.push(c), l === i.lineterminator && (d.push(f), (f = [])), (c = ''), (u = !1)); return ( (c = a(c)), f.push(c), d.push(f), i.skipinitialrows && (d = d.slice(i.skipinitialrows)), d ); }), (p.normalizeLineTerminator = function (e, r) { return (r = r || {}).lineterminator ? e : e.replace(/(\r\n|\n|\r)/gm, '\n'); }), (p.objectToArray = function (e) { for (var r = [], t = [], n = [], i = 0; i < e.fields.length; i++) { var o = e.fields[i].id; n.push(o); var a = e.fields[i].label ? e.fields[i].label : o; t.push(a); } r.push(t); for (i = 0; i < e.records.length; i++) { for (var l = [], s = e.records[i], u = 0; u < n.length; u++) l.push(s[n[u]]); r.push(l); } return r; }), (p.serialize = function (e, r) { var t = null; t = e instanceof Array ? e : p.objectToArray(e); var n, i, o, a = p.normalizeDialectOptions(r), l = '', s = '', u = '', c = ''; for ( o = function (e) { return ( null === e ? (e = '') : 'string' == typeof e && f.test(e) ? (a.doublequote && (e = e.replace(/"/g, '""')), (e = a.quotechar + e + a.quotechar)) : 'number' == typeof e && (e = e.toString(10)), e ); }, n = 0; n < t.length; n += 1 ) for (l = t[n], i = 0; i < l.length; i += 1) (s = o(l[i])), i === l.length - 1 ? ((c += (u += s) + a.lineterminator), (u = '')) : (u += s + a.delimiter), (s = ''); return c; }); var h = /^\d+$/, m = /^\d*\.\d+$|^\d+\.\d*$/, f = /^\s|\s$|,|"|\n/, v = String.prototype.trim ? function (e) { return e.trim(); } : function (e) { return e.replace(/^\s*/, '').replace(/\s*$/, ''); }; })(CSV); export default CSV;
2303_806435pww/waline_moved
docs/src/.vuepress/utils/csv.js
JavaScript
unknown
5,946
export const exportRaw = (name: string, data: BlobPart): void => { const saveAnchor = document.createElementNS( 'http://www.w3.org/1999/xhtml', 'a', ) as HTMLAnchorElement; saveAnchor.href = window.URL.createObjectURL(new Blob([data])); saveAnchor.download = name; const event = new MouseEvent('click', { relatedTarget: window, }); saveAnchor.dispatchEvent(event); };
2303_806435pww/waline_moved
docs/src/.vuepress/utils/exportRaw.ts
TypeScript
unknown
397
export * from './exportRaw.js'; export * from './transform/index.js';
2303_806435pww/waline_moved
docs/src/.vuepress/utils/index.ts
TypeScript
unknown
70
import { marked } from 'marked'; const parseKey = (key: string): string => { const anchor = document.createElement('a'); anchor.href = key; return anchor.pathname || key; }; /** * artalk 数据结构转 leancloud */ export const artalk2lc = (input) => { input = JSON.parse(input); const idMap = {}; const rootIdMap = {}; for (let i = 0; i < input.length; i++) { idMap[input[i].id] = input[i].rid; } for (let i = 0; i < input.length; i++) { if (!input[i].rid) continue; let rid = input[i].rid; while (idMap[rid]) rid = idMap[rid]; rootIdMap[input[i].id] = rid; } return { results: input.map( ({ content, date, created_at, email, id, ip, link, nick, page_key, rid, ua, is_pinned, is_pending, vote_down, vote_up, }) => { const time = date || created_at ? new Date((date || created_at).replace(/-/g, '/')).toISOString() : ''; const url = parseKey(page_key); return { objectId: id, comment: marked.parse(content), insertedAt: { __type: 'Date', iso: time, }, mail: email, createdAt: time, updatedAt: time, ip, link, nick, ua, url, pid: rid || null, rid: rootIdMap[id] || null, status: is_pending !== 'false' ? 'waiting' : 'approved', sticky: is_pinned === 'true', like: vote_up && vote_down ? vote_up - vote_down : 0, }; }, ), }; };
2303_806435pww/waline_moved
docs/src/.vuepress/utils/transform/artalk2lc.ts
TypeScript
unknown
1,691
/** * commento 数据结构转 leancloud */ export const commento2lc = (input: string) => { const data = JSON.parse(input); const { comments } = data; const commenters = {}; const hexMaps = {}; const rootHexMaps = {}; if (Array.isArray(data.commenters)) data.commenters.forEach((commenter) => { commenters[commenter.commenterHex] = { nick: commenter.name, mail: commenter.email, link: commenter.link !== 'undefined' ? commenter.link : undefined, }; }); comments .filter((comment) => comment.parentHex && comment.parentHex !== 'root') .forEach((comment) => { hexMaps[comment.commentHex] = comment.parentHex; }); comments .filter((comment) => comment.parentHex && comment.parentHex !== 'root') .forEach((comment) => { let rid = comment.parentHex; while (hexMaps[rid]) { rid = hexMaps[rid]; } rootHexMaps[comment.commentHex] = rid; }); return { results: comments .filter(({ deleted }) => !deleted) .map( ({ commentHex, commenterHex, parentHex, creationDate, html, markdown, url, state, }) => { const commenter = commenters[commenterHex] || { nick: 'Anonymous', mail: '', link: '', }; return Object.assign( { objectId: commentHex, comment: html || markdown, insertedAt: { __type: 'Date', iso: creationDate, }, createdAt: creationDate, updatedAt: creationDate, ip: '', ua: '', url: url, pid: parentHex !== 'root' ? parentHex : '', rid: rootHexMaps[commentHex] ? rootHexMaps[commentHex] : '', status: state === 'approved' ? 'approved' : 'waiting', }, commenter, ); }, ), }; };
2303_806435pww/waline_moved
docs/src/.vuepress/utils/transform/commento2lc.ts
TypeScript
unknown
2,044
/** * disqus 数据结构转 leancloud */ export const disqus2lc = (input: string) => { const parser = new DOMParser(); const dom = parser.parseFromString(input, 'application/xml'); const posts = Array.from(dom.querySelectorAll<HTMLElement>('post')).filter( (postEl) => { const isDeletedEl = postEl.querySelector('isDeleted'); if ( isDeletedEl && isDeletedEl.textContent?.toLocaleLowerCase() === 'true' ) { return false; } return true; }, ); const threads = Array.from(dom.querySelectorAll('disqus > thread')); const articleMap: Record<string, string> = {}; threads.forEach((threadEl) => { const urlEl = threadEl.querySelector('link'); const threadId = threadEl.getAttribute('dsq:id')!; articleMap[threadId] = ''; if (urlEl && urlEl.textContent) { const anchor = new URL(urlEl.textContent); articleMap[threadId] = anchor.pathname; } }); const idMap: Record<string, string> = {}; posts.forEach((postEl) => { const objectId = postEl.getAttribute('dsq:id')!; const parent = postEl.querySelector('parent'); if (parent) { const pid = parent.getAttribute('dsq:id'); if (!pid) { return; } idMap[objectId] = pid; } }); const rootIdMap: Record<string, string> = {}; posts .filter((postEl) => postEl.querySelector('parent')) .forEach((postEl) => { const objectId = postEl.getAttribute('dsq:id')!; let rid = postEl.querySelector('parent')?.getAttribute('dsq:id')!; while (idMap[rid]) rid = idMap[rid]; rootIdMap[objectId] = rid; }); const data = posts.map((postEl) => { const objectId = postEl.getAttribute('dsq:id')!; const comment = postEl.querySelector('message')?.textContent; const insertedAt = new Date( postEl.querySelector('createdAt')?.textContent!, ).toISOString(); const nick = postEl.querySelector('author name')?.textContent; const threadId = postEl.querySelector('thread')?.getAttribute('dsq:id')!; const url = articleMap[threadId]; const parent = postEl.querySelector('parent'); const pid = parent ? parent.getAttribute('dsq:id') : null; const rid = parent ? rootIdMap[objectId] : null; const isSpam = postEl.querySelector('isSpam')?.textContent?.toLowerCase() !== 'false'; return { objectId, comment, insertedAt: { __type: 'Date', iso: insertedAt, }, createdAt: insertedAt, updatedAt: insertedAt, ip: '', link: '', mail: '', nick, ua: '', url, pid, rid, status: isSpam ? 'spam' : 'approved', }; }); return { results: data, }; };
2303_806435pww/waline_moved
docs/src/.vuepress/utils/transform/disqus2lc.ts
TypeScript
unknown
2,741
import { artalk2lc } from './artalk2lc.js'; import { commento2lc } from './commento2lc.js'; import { disqus2lc } from './disqus2lc.js'; import { lc2csv } from './lc2csv.js'; import { lc2tcb } from './lc2tcb.js'; import { tk2lc } from './tk2lc.js'; export type OriginalType = | 'disqus' | 'valine' | 'twikoo' | 'artalk' | 'commento'; export type TransformType = 'wleancloud' | 'wcloudbase' | 'wsql' | 'wgithub'; export const transform: Record< OriginalType, Record<TransformType, (data: string) => unknown> > = { disqus: { wleancloud: disqus2lc, wcloudbase(data) { return lc2tcb(disqus2lc(data)); }, wsql(data) { return lc2csv(disqus2lc(data)); }, wgithub(data) { return lc2csv(disqus2lc(data)); }, }, valine: { wleancloud: (data) => data, wcloudbase: lc2tcb, wsql: lc2csv, wgithub: lc2csv, }, twikoo: { wleancloud: tk2lc, wcloudbase(data) { return lc2tcb(tk2lc(data)); }, wsql(data) { return lc2csv(tk2lc(data)); }, wgithub(data) { return lc2csv(tk2lc(data)); }, }, artalk: { wleancloud: artalk2lc, wcloudbase(data) { return lc2tcb(artalk2lc(data)); }, wsql(data) { return lc2csv(artalk2lc(data)); }, wgithub(data) { return lc2csv(artalk2lc(data)); }, }, commento: { wleancloud: commento2lc, wcloudbase(data) { return lc2tcb(commento2lc(data)); }, wsql(data) { return lc2csv(commento2lc(data)); }, wgithub(data) { return lc2csv(commento2lc(data)); }, }, };
2303_806435pww/waline_moved
docs/src/.vuepress/utils/transform/index.ts
TypeScript
unknown
1,594
import CSV from '../csv.js'; /** * leancloud 数据结构转 csv */ export const lc2csv = (input) => { const field = [ 'id', 'nick', 'updatedAt', 'mail', 'ua', 'ip', 'status', 'insertedAt', 'createdAt', 'comment', 'pid', 'rid', 'link', 'url', 'user_id', ]; const keyMaps = {}; const getId = (row) => { if (row.hasOwnProperty('objectId')) { return row.objectId; } if (typeof row._id !== 'string' && row._id.$oid) { return row._id.$oid; } }; let index = 1; input.results.forEach((row) => { const id = getId(row); if (id) { keyMaps[id] = index; } index += 1; }); const records = []; input.results.forEach((row) => { const id = getId(row); if (id) { row.id = keyMaps[id].toString(); } row.pid = keyMaps[row.pid]; row.rid = keyMaps[row.rid]; row.status = row.status || 'approved'; const record = {}; for (let i = 0; i < field.length; i++) { const key = field[i]; switch (key) { case 'insertedAt': record[key] = row[key].iso.replace('T', ' ').replace(/.\d{3}Z$/i, ''); break; case 'createdAt': case 'updatedAt': record[key] = row[key].replace('T', ' ').replace(/.\d{3}Z$/i, ''); break; case 'rid': case 'pid': record[key] = row[key] || null; break; default: record[key] = row[key] || ''; break; } } records.push(record); }); const ret = CSV.serialize({ fields: field.map((name) => ({ id: name, label: name })), records, }); return ret; };
2303_806435pww/waline_moved
docs/src/.vuepress/utils/transform/lc2csv.ts
TypeScript
unknown
1,684
/** * leancloud 数据结构转 cloudbase */ export const lc2tcb = (json) => json.results .map((comment) => { if (comment.hasOwnProperty('objectId')) { comment._id = comment.objectId; delete comment.objectId; } else if (typeof comment._id !== 'string' && comment._id.$oid) { comment._id = comment._id.$oid; } if (typeof comment.insertedAt === 'object' && comment.insertedAt.iso) { comment.insertedAt = { $date: comment.insertedAt.iso }; } delete comment.ACL; return JSON.stringify(comment); }) .join('\r\n');
2303_806435pww/waline_moved
docs/src/.vuepress/utils/transform/lc2tcb.ts
TypeScript
unknown
602
/** * twikoo 数据结构转 leancloud */ export const tk2lc = (input: string) => { let arr: any[]; try { arr = JSON.parse(input); } catch (e) { // compat old twikoo output json format arr = input .trim() .split(/[\r\n]+/) .filter((v) => v) .map((text) => JSON.parse(text)); } const data = arr.map( ({ _id, comment, created, updated, ip, link, mail, nick, ua, url, pid, rid, isSpam, }) => ({ objectId: typeof _id === 'string' ? _id : _id.$oid, comment: comment, insertedAt: { __type: 'Date', iso: new Date( created?.$numberLong ? Number(created.$numberLong) : created, ).toISOString(), }, createdAt: new Date( created?.$numberLong ? Number(created.$numberLong) : created, ).toISOString(), updatedAt: new Date( updated?.$numberLong ? Number(updated.$numberLong) : updated, ).toISOString(), ip, link, mail, nick, ua, url, pid, rid, status: isSpam ? 'spam' : 'approved', }), ); return { results: data, }; };
2303_806435pww/waline_moved
docs/src/.vuepress/utils/transform/tk2lc.ts
TypeScript
unknown
1,207
import path from 'path'; import { fileURLToPath } from 'url'; import { defaultNamingConventionRules, globals, hope, } from 'eslint-config-mister-hope'; import { vue } from 'eslint-config-mister-hope/vue'; import reactRecommended from 'eslint-plugin-react/configs/recommended.js'; const __dirname = path.dirname(fileURLToPath(import.meta.url)); export default hope( { ignores: [ // FIXME: Correctly type these files '**/.vuepress/utils/transform/**', '**/.vuepress/utils/csv.js', 'example/**', ], languageOptions: { parserOptions: { project: ['./tsconfig.eslint.json'], tsconfigRootDir: path.resolve(__dirname, '.'), extraFileExtensions: ['.vue'], }, }, }, ...vue({ all: { '@typescript-eslint/naming-convention': [ 'warn', { selector: ['property'], format: null, custom: { regex: '(^\\/$|^/.*/$|^@|^[a-z]+(?:-[a-z]+)*?$)', match: true, }, filter: '(^\\/$|^/.*/$|^@|^[a-z]+(?:-[a-z]+)*?$)', }, ...defaultNamingConventionRules, ], }, sfc: { 'vue/block-lang': [ 'error', { script: { lang: 'ts' }, }, ], }, }), // @ts-expect-error: react plugin types { files: ['packages/admin/src/**/*.{js,jsx}'], ...reactRecommended, languageOptions: { ...reactRecommended.languageOptions, globals: { ...globals.browser, VERSION: 'readonly', }, }, settings: { react: { version: 'detect', }, }, rules: { 'import-x/no-unresolved': ['error', { ignore: ['\\.svg\\?react$'] }], }, }, { files: ['docs/src/.vuepress/components/**/*.{ts,vue}'], languageOptions: { globals: globals.browser, }, }, { files: ['packages/client/src/**/*.{ts,vue}'], languageOptions: { globals: globals.browser, }, }, { files: [ 'packages/cloudbase/**/*.js', 'packages/hexo-next/**/*.js', 'packages/server/**/*.{js,ts}', ], languageOptions: { globals: globals.node, }, rules: { '@typescript-eslint/no-require-imports': 'off', 'import-x/no-commonjs': 'off', }, }, { files: ['packages/cloudbase/**/*.js', 'packages/server/**/*.{js,ts}'], languageOptions: { globals: { think: 'readonly', }, }, }, { files: ['packages/server/**/*.{js,ts}'], rules: { '@typescript-eslint/class-literal-property-style': 'off', '@typescript-eslint/no-empty-function': 'off', 'no-console': 'off', }, }, { files: ['scripts/**.js'], languageOptions: { globals: globals.node, }, }, );
2303_806435pww/waline_moved
eslint.config.js
JavaScript
unknown
2,789
const Application = require('@waline/vercel'); module.exports = Application({ plugins: [], async postSave(comment) { // do what ever you want after comment saved }, });
2303_806435pww/waline_moved
example/index.cjs
JavaScript
unknown
180
// add think as global variable global.think = { config: (name) => { if (name === 'domPurify') return {}; return undefined; }, };
2303_806435pww/waline_moved
scripts/thinkjs-mock.js
JavaScript
unknown
143
// example: node scripts/workspace-publish.cjs @waline/client import fs from 'node:fs'; import path from 'node:path'; const isCI = process.env.CI; const packagesDir = path.join(import.meta.dirname, '../packages'); const getPkgs = async (pkgDir) => { const dirs = await Promise.all( fs .readdirSync(pkgDir) .filter((dir) => { const dirname = path.join(pkgDir, dir); const isDir = fs.statSync(dirname).isDirectory(); if (!isDir) return false; try { const stat = fs.statSync(path.join(dirname, 'package.json')); return stat.isFile(); } catch { return false; } }) .map(async (dir) => { const dirname = path.join(pkgDir, dir); const pkg = ( await import(path.join(dirname, 'package.json'), { with: { type: 'json' }, }) ).default; return [pkg.name, { dirname, info: pkg }]; }), ); return new Map(dirs); }; function setPkg(pkg, pkgs) { const pkgMap = pkgs.get(pkg); if (!pkgMap) return; let writeFlag = false; const DEP_KEYS = [ 'dependencies', 'devDependencies', 'peerDependencies', 'optionalDependencies', 'bundleDependencies', ]; DEP_KEYS.forEach((depKey) => { if (!pkgMap.info[depKey]) return; for (const depName in pkgMap.info[depKey]) { const version = pkgMap.info[depKey][depName]; if (!version.startsWith('workspace:')) continue; const workPkg = pkgs.get(depName); if (!workPkg) continue; const range = ['workspace:^', 'workspace:~'].includes(version) ? version[version.length - 1] : ''; pkgMap.info[depKey][depName] = range + workPkg.info.version; writeFlag = true; } }); const handler = isCI ? fs.writeFileSync.bind(fs, path.join(pkgMap.dirname, 'package.json')) : console.log.bind(console); if (writeFlag) handler(JSON.stringify(pkgMap.info, null, 2) + '\n'); } setPkg(process.argv[2], await getPkgs(packagesDir));
2303_806435pww/waline_moved
scripts/workspace-publish.js
JavaScript
unknown
2,039
import { defineConfig } from 'vitest/config'; export default defineConfig({ test: { setupFiles: './scripts/thinkjs-mock.js', }, });
2303_806435pww/waline_moved
vitest.config.ts
TypeScript
unknown
141
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="404"> <meta property="og:url" content="https://xingwangzhe.fun/404/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:published_time" content="2024-09-20T09:53:21.000Z"> <meta property="article:modified_time" content="2024-09-20T10:11:56.607Z"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/404/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>404 | 姓王者的博客 </title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> </head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content page posts-expand"> <div class="post-block" lang="zh-CN"> <header class="post-header"> <h1 class="post-title" itemprop="name headline">404 </h1> <div class="post-meta"> </div> </header> <div class="post-body"> <!DOCTYPE HTML> <html> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8;"/> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta name="robots" content="all" /> <meta name="robots" content="index,follow"/> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <script type="text/javascript" src="//qzonestyle.gtimg.cn/qzone/hybrid/app/404/search_children.js" charset="utf-8" homePageUrl="http://xingwangzhe.fun" homePageName="回到我的主页"></script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html> </div> </div> </div> <div class="tabs tabs-comment"> <ul class="nav-tabs"> <li class="tab"><a href="#comment-gitalk">gitalk</a></li> <li class="tab"><a href="#comment-livere">livere</a></li> </ul> <div class="tab-content"> <div class="tab-pane gitalk" id="comment-gitalk"> <div class="comments" id="gitalk-container"></div> </div> <div class="tab-pane livere" id="comment-livere"> <div class="comments"> <div id="lv-container" data-id="city" data-uid="MTAyMC81OTkzNi8zNjM5OQ=="></div> </div> </div> </div> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/gitalk@1/dist/gitalk.min.css"> <script> NexT.utils.loadComments(document.querySelector('#gitalk-container'), () => { NexT.utils.getScript('//cdn.jsdelivr.net/npm/gitalk@1/dist/gitalk.min.js', () => { var gitalk = new Gitalk({ clientID : 'Ov23lifXHoq97dbVMtsq', clientSecret: '5b1323c3b64bd4fef3f3a56e2c7ada191b416bf4', repo : 'xingwangzhe.github.io', owner : 'xingwangzhe', admin : ['xingwangzhe'], id : '4c9b0f983ae256a9d61fcacf2b0f71a3', language: 'zh-CN', distractionFreeMode: true }); gitalk.render('gitalk-container'); }, window.Gitalk); }); </script> <script> NexT.utils.loadComments(document.querySelector('#lv-container'), () => { window.livereOptions = { refer: location.pathname.replace(CONFIG.root, '').replace('index.html', '') }; (function(d, s) { var j, e = d.getElementsByTagName(s)[0]; if (typeof LivereTower === 'function') { return; } j = d.createElement(s); j.src = 'https://cdn-city.livere.com/js/embed.dist.js'; j.async = true; e.parentNode.insertBefore(j, e); })(document, 'script'); }); </script> </body> </html>
2303_806435pww/xingwangzhe.github.io_moved
404/index.html
HTML
unknown
26,036
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/archives/2024/06/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/archives/2024/06/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>归档 | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content archive"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <span class="collection-header">还行! 目前共计 44 篇日志。 继续努力。</span> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-06-23T16:33:26+08:00" content="2024-06-23"> 06-23 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/f5bf34a0/" itemprop="url"> <span itemprop="name">forever</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-06-21T21:15:25+08:00" content="2024-06-21"> 06-21 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/e855e869/" itemprop="url"> <span itemprop="name">哈基米</span> </a> </div> </header> </article> </div> </div> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
archives/2024/06/index.html
HTML
unknown
24,617
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/archives/2024/09/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/archives/2024/09/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>归档 | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content archive"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <span class="collection-header">还行! 目前共计 44 篇日志。 继续努力。</span> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-30T21:19:04+08:00" content="2024-09-30"> 09-30 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/b0f770c3/" itemprop="url"> <span itemprop="name">Vue:watch监视</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-29T18:19:17+08:00" content="2024-09-29"> 09-29 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/ffe80f36/" itemprop="url"> <span itemprop="name">Vue:计算属性</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-29T13:13:39+08:00" content="2024-09-29"> 09-29 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/36c34667/" itemprop="url"> <span itemprop="name">learn Markdown</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-28T20:48:54+08:00" content="2024-09-28"> 09-28 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/90edeb6d/" itemprop="url"> <span itemprop="name">信息技术基数实训-焊接爱心花灯</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:19:55+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/218fcad3/" itemprop="url"> <span itemprop="name">初识Vue3,有趣</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/d8587a7c/" itemprop="url"> <span itemprop="name">通过创建资产负债表学习 CSS 伪选择器</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/544543f1/" itemprop="url"> <span itemprop="name">通过创建营养标签学习排版</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/fcbe0bf5/" itemprop="url"> <span itemprop="name">学了点js</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/b6e6b630/" itemprop="url"> <span itemprop="name">玩文明六玩爽了</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/38c422a2/" itemprop="url"> <span itemprop="name">我的第一个博客</span> </a> </div> </header> </article> </div> </div> <nav class="pagination"> <span class="page-number current">1</span><a class="page-number" href="/archives/2024/09/page/2/">2</a><span class="space">&hellip;</span><a class="page-number" href="/archives/2024/09/page/4/">4</a><a class="extend next" rel="next" href="/archives/2024/09/page/2/"><i class="fa fa-angle-right" aria-label="下一页"></i></a> </nav> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
archives/2024/09/index.html
HTML
unknown
29,375
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/archives/2024/09/page/2/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/archives/2024/09/page/2/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>归档 | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content archive"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <span class="collection-header">还行! 目前共计 44 篇日志。 继续努力。</span> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/6ec2376e/" itemprop="url"> <span itemprop="name">hexo创建公益404界面</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/2283d3b7/" itemprop="url"> <span itemprop="name">本来想搬fishport_serverwiki来着</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/ca82fca4/" itemprop="url"> <span itemprop="name">工业博物馆游览</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/f899f771/" itemprop="url"> <span itemprop="name">LeetCode:2. 两数相加</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-25T20:42:35+08:00" content="2024-09-25"> 09-25 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/58ad3c48/" itemprop="url"> <span itemprop="name">连不上网了?可能的DNS解决方法</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-25T18:02:21+08:00" content="2024-09-25"> 09-25 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/c0981903/" itemprop="url"> <span itemprop="name">通过创建钢琴学习响应式网页设计</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-25T17:49:56+08:00" content="2024-09-25"> 09-25 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/52b92bfc/" itemprop="url"> <span itemprop="name">通过创建猫咪绘画学习中级 CSS</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-23T15:01:26+08:00" content="2024-09-23"> 09-23 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/6af33c89/" itemprop="url"> <span itemprop="name">神人有感:先礼礼礼礼礼礼后兵</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-21T21:01:13+08:00" content="2024-09-21"> 09-21 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/9f32bac9/" itemprop="url"> <span itemprop="name">通过创建小测验学习无障碍</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-21T17:38:24+08:00" content="2024-09-21"> 09-21 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/42cabe35/" itemprop="url"> <span itemprop="name">hexo压缩资源,优化访问</span> </a> </div> </header> </article> </div> </div> <nav class="pagination"> <a class="extend prev" rel="prev" href="/archives/2024/09/"><i class="fa fa-angle-left" aria-label="上一页"></i></a><a class="page-number" href="/archives/2024/09/">1</a><span class="page-number current">2</span><a class="page-number" href="/archives/2024/09/page/3/">3</a><a class="page-number" href="/archives/2024/09/page/4/">4</a><a class="extend next" rel="next" href="/archives/2024/09/page/3/"><i class="fa fa-angle-right" aria-label="下一页"></i></a> </nav> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
archives/2024/09/page/2/index.html
HTML
unknown
29,624
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/archives/2024/09/page/3/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/archives/2024/09/page/3/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>归档 | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content archive"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <span class="collection-header">还行! 目前共计 44 篇日志。 继续努力。</span> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-20T18:58:27+08:00" content="2024-09-20"> 09-20 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/8403dd78/" itemprop="url"> <span itemprop="name">在hexo-next配置gitalk</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-20T17:22:58+08:00" content="2024-09-20"> 09-20 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/f513b372/" itemprop="url"> <span itemprop="name">为hexo-next建立静态说说</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-19T21:27:46+08:00" content="2024-09-19"> 09-19 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/e90bb5b9/" itemprop="url"> <span itemprop="name">探路:雨课堂的字体加密。</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-19T07:59:02+08:00" content="2024-09-19"> 09-19 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/261d7eb2/" itemprop="url"> <span itemprop="name">为Hexo博客提供订阅服务</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-16T13:27:19+08:00" content="2024-09-16"> 09-16 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/d09c70b/" itemprop="url"> <span itemprop="name">通过创建照片集学习 CSS 弹性盒子</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-16T11:18:02+08:00" content="2024-09-16"> 09-16 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/5129f3bd/" itemprop="url"> <span itemprop="name">通过创作罗斯科绘画学习 CSS 盒子模型</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-15T20:31:15+08:00" content="2024-09-15"> 09-15 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/2f3d653d/" itemprop="url"> <span itemprop="name">LeetCode:1. 两数之和</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-15T16:43:40+08:00" content="2024-09-15"> 09-15 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/f7250b56/" itemprop="url"> <span itemprop="name">独立地写了一个调查表:)</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-15T15:00:41+08:00" content="2024-09-15"> 09-15 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/5e40dbcf/" itemprop="url"> <span itemprop="name">通过创建注册表单学习 HTML 表单</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-15T12:28:24+08:00" content="2024-09-15"> 09-15 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/e10534d7/" itemprop="url"> <span itemprop="name">通过创建一组彩色笔学习 CSS 颜色</span> </a> </div> </header> </article> </div> </div> <nav class="pagination"> <a class="extend prev" rel="prev" href="/archives/2024/09/page/2/"><i class="fa fa-angle-left" aria-label="上一页"></i></a><a class="page-number" href="/archives/2024/09/">1</a><a class="page-number" href="/archives/2024/09/page/2/">2</a><span class="page-number current">3</span><a class="page-number" href="/archives/2024/09/page/4/">4</a><a class="extend next" rel="next" href="/archives/2024/09/page/4/"><i class="fa fa-angle-right" aria-label="下一页"></i></a> </nav> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
archives/2024/09/page/3/index.html
HTML
unknown
29,648
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/archives/2024/09/page/4/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/archives/2024/09/page/4/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>归档 | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content archive"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <span class="collection-header">还行! 目前共计 44 篇日志。 继续努力。</span> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-15T10:08:12+08:00" content="2024-09-15"> 09-15 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/fc7dd4b4/" itemprop="url"> <span itemprop="name">为github主页设计美化介绍</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-14T19:16:27+08:00" content="2024-09-14"> 09-14 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/62fedd1e/" itemprop="url"> <span itemprop="name">hexo创建一个友情链接页面</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-14T18:38:52+08:00" content="2024-09-14"> 09-14 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/69cc9e5f/" itemprop="url"> <span itemprop="name">hexo-next在侧边栏添加IP信息</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-13T21:17:36+08:00" content="2024-09-13"> 09-13 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/36b96013/" itemprop="url"> <span itemprop="name">通过创建咖啡店菜单学习基础CSS</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-13T19:36:15+08:00" content="2024-09-13"> 09-13 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/dad78c45/" itemprop="url"> <span itemprop="name">第一次Pull requests :)</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-11T17:28:10+08:00" content="2024-09-11"> 09-11 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/c42bc0f8/" itemprop="url"> <span itemprop="name">给博客右上角添加github跳转图标</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-11T17:09:40+08:00" content="2024-09-11"> 09-11 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/6273631e/" itemprop="url"> <span itemprop="name">通过创建猫咪相册应用学习HTML</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-04T16:03:03+08:00" content="2024-09-04"> 09-04 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/50aa0545/" itemprop="url"> <span itemprop="name">hexo-next在文章下添加版权信息</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-04T15:02:00+08:00" content="2024-09-04"> 09-04 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/59a1e261/" itemprop="url"> <span itemprop="name">hexon:hexo的可视化编辑</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-03T20:55:09+08:00" content="2024-09-03"> 09-03 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/ceb862dd/" itemprop="url"> <span itemprop="name">whatgalgame</span> </a> </div> </header> </article> </div> </div> <nav class="pagination"> <a class="extend prev" rel="prev" href="/archives/2024/09/page/3/"><i class="fa fa-angle-left" aria-label="上一页"></i></a><a class="page-number" href="/archives/2024/09/">1</a><span class="space">&hellip;</span><a class="page-number" href="/archives/2024/09/page/3/">3</a><span class="page-number current">4</span> </nav> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
archives/2024/09/page/4/index.html
HTML
unknown
29,466
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/archives/2024/10/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/archives/2024/10/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>归档 | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content archive"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <span class="collection-header">还行! 目前共计 44 篇日志。 继续努力。</span> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-10-11T18:09:21+08:00" content="2024-10-11"> 10-11 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/93f836cb/" itemprop="url"> <span itemprop="name">开往 友链接力!</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-10-08T15:21:09+08:00" content="2024-10-08"> 10-08 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/37f315ff/" itemprop="url"> <span itemprop="name">解决国外人机验证不显示问题</span> </a> </div> </header> </article> </div> </div> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
archives/2024/10/index.html
HTML
unknown
24,660
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/archives/2024/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/archives/2024/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>归档 | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content archive"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <span class="collection-header">还行! 目前共计 44 篇日志。 继续努力。</span> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-10-11T18:09:21+08:00" content="2024-10-11"> 10-11 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/93f836cb/" itemprop="url"> <span itemprop="name">开往 友链接力!</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-10-08T15:21:09+08:00" content="2024-10-08"> 10-08 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/37f315ff/" itemprop="url"> <span itemprop="name">解决国外人机验证不显示问题</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-30T21:19:04+08:00" content="2024-09-30"> 09-30 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/b0f770c3/" itemprop="url"> <span itemprop="name">Vue:watch监视</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-29T18:19:17+08:00" content="2024-09-29"> 09-29 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/ffe80f36/" itemprop="url"> <span itemprop="name">Vue:计算属性</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-29T13:13:39+08:00" content="2024-09-29"> 09-29 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/36c34667/" itemprop="url"> <span itemprop="name">learn Markdown</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-28T20:48:54+08:00" content="2024-09-28"> 09-28 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/90edeb6d/" itemprop="url"> <span itemprop="name">信息技术基数实训-焊接爱心花灯</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:19:55+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/218fcad3/" itemprop="url"> <span itemprop="name">初识Vue3,有趣</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/d8587a7c/" itemprop="url"> <span itemprop="name">通过创建资产负债表学习 CSS 伪选择器</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/544543f1/" itemprop="url"> <span itemprop="name">通过创建营养标签学习排版</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/fcbe0bf5/" itemprop="url"> <span itemprop="name">学了点js</span> </a> </div> </header> </article> </div> </div> <nav class="pagination"> <span class="page-number current">1</span><a class="page-number" href="/archives/2024/page/2/">2</a><span class="space">&hellip;</span><a class="page-number" href="/archives/2024/page/5/">5</a><a class="extend next" rel="next" href="/archives/2024/page/2/"><i class="fa fa-angle-right" aria-label="下一页"></i></a> </nav> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
archives/2024/index.html
HTML
unknown
29,377
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/archives/2024/page/2/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/archives/2024/page/2/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>归档 | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content archive"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <span class="collection-header">还行! 目前共计 44 篇日志。 继续努力。</span> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/b6e6b630/" itemprop="url"> <span itemprop="name">玩文明六玩爽了</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/38c422a2/" itemprop="url"> <span itemprop="name">我的第一个博客</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/6ec2376e/" itemprop="url"> <span itemprop="name">hexo创建公益404界面</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/2283d3b7/" itemprop="url"> <span itemprop="name">本来想搬fishport_serverwiki来着</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/ca82fca4/" itemprop="url"> <span itemprop="name">工业博物馆游览</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/f899f771/" itemprop="url"> <span itemprop="name">LeetCode:2. 两数相加</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-25T20:42:35+08:00" content="2024-09-25"> 09-25 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/58ad3c48/" itemprop="url"> <span itemprop="name">连不上网了?可能的DNS解决方法</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-25T18:02:21+08:00" content="2024-09-25"> 09-25 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/c0981903/" itemprop="url"> <span itemprop="name">通过创建钢琴学习响应式网页设计</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-25T17:49:56+08:00" content="2024-09-25"> 09-25 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/52b92bfc/" itemprop="url"> <span itemprop="name">通过创建猫咪绘画学习中级 CSS</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-23T15:01:26+08:00" content="2024-09-23"> 09-23 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/6af33c89/" itemprop="url"> <span itemprop="name">神人有感:先礼礼礼礼礼礼后兵</span> </a> </div> </header> </article> </div> </div> <nav class="pagination"> <a class="extend prev" rel="prev" href="/archives/2024/"><i class="fa fa-angle-left" aria-label="上一页"></i></a><a class="page-number" href="/archives/2024/">1</a><span class="page-number current">2</span><a class="page-number" href="/archives/2024/page/3/">3</a><span class="space">&hellip;</span><a class="page-number" href="/archives/2024/page/5/">5</a><a class="extend next" rel="next" href="/archives/2024/page/3/"><i class="fa fa-angle-right" aria-label="下一页"></i></a> </nav> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
archives/2024/page/2/index.html
HTML
unknown
29,613
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/archives/2024/page/3/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/archives/2024/page/3/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>归档 | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content archive"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <span class="collection-header">还行! 目前共计 44 篇日志。 继续努力。</span> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-21T21:01:13+08:00" content="2024-09-21"> 09-21 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/9f32bac9/" itemprop="url"> <span itemprop="name">通过创建小测验学习无障碍</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-21T17:38:24+08:00" content="2024-09-21"> 09-21 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/42cabe35/" itemprop="url"> <span itemprop="name">hexo压缩资源,优化访问</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-20T18:58:27+08:00" content="2024-09-20"> 09-20 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/8403dd78/" itemprop="url"> <span itemprop="name">在hexo-next配置gitalk</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-20T17:22:58+08:00" content="2024-09-20"> 09-20 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/f513b372/" itemprop="url"> <span itemprop="name">为hexo-next建立静态说说</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-19T21:27:46+08:00" content="2024-09-19"> 09-19 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/e90bb5b9/" itemprop="url"> <span itemprop="name">探路:雨课堂的字体加密。</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-19T07:59:02+08:00" content="2024-09-19"> 09-19 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/261d7eb2/" itemprop="url"> <span itemprop="name">为Hexo博客提供订阅服务</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-16T13:27:19+08:00" content="2024-09-16"> 09-16 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/d09c70b/" itemprop="url"> <span itemprop="name">通过创建照片集学习 CSS 弹性盒子</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-16T11:18:02+08:00" content="2024-09-16"> 09-16 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/5129f3bd/" itemprop="url"> <span itemprop="name">通过创作罗斯科绘画学习 CSS 盒子模型</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-15T20:31:15+08:00" content="2024-09-15"> 09-15 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/2f3d653d/" itemprop="url"> <span itemprop="name">LeetCode:1. 两数之和</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-15T16:43:40+08:00" content="2024-09-15"> 09-15 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/f7250b56/" itemprop="url"> <span itemprop="name">独立地写了一个调查表:)</span> </a> </div> </header> </article> </div> </div> <nav class="pagination"> <a class="extend prev" rel="prev" href="/archives/2024/page/2/"><i class="fa fa-angle-left" aria-label="上一页"></i></a><a class="page-number" href="/archives/2024/">1</a><a class="page-number" href="/archives/2024/page/2/">2</a><span class="page-number current">3</span><a class="page-number" href="/archives/2024/page/4/">4</a><a class="page-number" href="/archives/2024/page/5/">5</a><a class="extend next" rel="next" href="/archives/2024/page/4/"><i class="fa fa-angle-right" aria-label="下一页"></i></a> </nav> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
archives/2024/page/3/index.html
HTML
unknown
29,666
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/archives/2024/page/4/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/archives/2024/page/4/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>归档 | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content archive"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <span class="collection-header">还行! 目前共计 44 篇日志。 继续努力。</span> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-15T15:00:41+08:00" content="2024-09-15"> 09-15 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/5e40dbcf/" itemprop="url"> <span itemprop="name">通过创建注册表单学习 HTML 表单</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-15T12:28:24+08:00" content="2024-09-15"> 09-15 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/e10534d7/" itemprop="url"> <span itemprop="name">通过创建一组彩色笔学习 CSS 颜色</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-15T10:08:12+08:00" content="2024-09-15"> 09-15 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/fc7dd4b4/" itemprop="url"> <span itemprop="name">为github主页设计美化介绍</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-14T19:16:27+08:00" content="2024-09-14"> 09-14 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/62fedd1e/" itemprop="url"> <span itemprop="name">hexo创建一个友情链接页面</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-14T18:38:52+08:00" content="2024-09-14"> 09-14 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/69cc9e5f/" itemprop="url"> <span itemprop="name">hexo-next在侧边栏添加IP信息</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-13T21:17:36+08:00" content="2024-09-13"> 09-13 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/36b96013/" itemprop="url"> <span itemprop="name">通过创建咖啡店菜单学习基础CSS</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-13T19:36:15+08:00" content="2024-09-13"> 09-13 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/dad78c45/" itemprop="url"> <span itemprop="name">第一次Pull requests :)</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-11T17:28:10+08:00" content="2024-09-11"> 09-11 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/c42bc0f8/" itemprop="url"> <span itemprop="name">给博客右上角添加github跳转图标</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-11T17:09:40+08:00" content="2024-09-11"> 09-11 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/6273631e/" itemprop="url"> <span itemprop="name">通过创建猫咪相册应用学习HTML</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-04T16:03:03+08:00" content="2024-09-04"> 09-04 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/50aa0545/" itemprop="url"> <span itemprop="name">hexo-next在文章下添加版权信息</span> </a> </div> </header> </article> </div> </div> <nav class="pagination"> <a class="extend prev" rel="prev" href="/archives/2024/page/3/"><i class="fa fa-angle-left" aria-label="上一页"></i></a><a class="page-number" href="/archives/2024/">1</a><span class="space">&hellip;</span><a class="page-number" href="/archives/2024/page/3/">3</a><span class="page-number current">4</span><a class="page-number" href="/archives/2024/page/5/">5</a><a class="extend next" rel="next" href="/archives/2024/page/5/"><i class="fa fa-angle-right" aria-label="下一页"></i></a> </nav> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
archives/2024/page/4/index.html
HTML
unknown
29,680
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/archives/2024/page/5/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/archives/2024/page/5/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>归档 | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content archive"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <span class="collection-header">还行! 目前共计 44 篇日志。 继续努力。</span> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-04T15:02:00+08:00" content="2024-09-04"> 09-04 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/59a1e261/" itemprop="url"> <span itemprop="name">hexon:hexo的可视化编辑</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-03T20:55:09+08:00" content="2024-09-03"> 09-03 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/ceb862dd/" itemprop="url"> <span itemprop="name">whatgalgame</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-06-23T16:33:26+08:00" content="2024-06-23"> 06-23 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/f5bf34a0/" itemprop="url"> <span itemprop="name">forever</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-06-21T21:15:25+08:00" content="2024-06-21"> 06-21 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/e855e869/" itemprop="url"> <span itemprop="name">哈基米</span> </a> </div> </header> </article> </div> </div> <nav class="pagination"> <a class="extend prev" rel="prev" href="/archives/2024/page/4/"><i class="fa fa-angle-left" aria-label="上一页"></i></a><a class="page-number" href="/archives/2024/">1</a><span class="space">&hellip;</span><a class="page-number" href="/archives/2024/page/4/">4</a><span class="page-number current">5</span> </nav> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
archives/2024/page/5/index.html
HTML
unknown
26,057
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/archives/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/archives/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>归档 | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content archive"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <span class="collection-header">还行! 目前共计 44 篇日志。 继续努力。</span> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-10-11T18:09:21+08:00" content="2024-10-11"> 10-11 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/93f836cb/" itemprop="url"> <span itemprop="name">开往 友链接力!</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-10-08T15:21:09+08:00" content="2024-10-08"> 10-08 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/37f315ff/" itemprop="url"> <span itemprop="name">解决国外人机验证不显示问题</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-30T21:19:04+08:00" content="2024-09-30"> 09-30 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/b0f770c3/" itemprop="url"> <span itemprop="name">Vue:watch监视</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-29T18:19:17+08:00" content="2024-09-29"> 09-29 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/ffe80f36/" itemprop="url"> <span itemprop="name">Vue:计算属性</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-29T13:13:39+08:00" content="2024-09-29"> 09-29 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/36c34667/" itemprop="url"> <span itemprop="name">learn Markdown</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-28T20:48:54+08:00" content="2024-09-28"> 09-28 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/90edeb6d/" itemprop="url"> <span itemprop="name">信息技术基数实训-焊接爱心花灯</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:19:55+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/218fcad3/" itemprop="url"> <span itemprop="name">初识Vue3,有趣</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/d8587a7c/" itemprop="url"> <span itemprop="name">通过创建资产负债表学习 CSS 伪选择器</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/544543f1/" itemprop="url"> <span itemprop="name">通过创建营养标签学习排版</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/fcbe0bf5/" itemprop="url"> <span itemprop="name">学了点js</span> </a> </div> </header> </article> </div> </div> <nav class="pagination"> <span class="page-number current">1</span><a class="page-number" href="/archives/page/2/">2</a><span class="space">&hellip;</span><a class="page-number" href="/archives/page/5/">5</a><a class="extend next" rel="next" href="/archives/page/2/"><i class="fa fa-angle-right" aria-label="下一页"></i></a> </nav> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
archives/index.html
HTML
unknown
29,352
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/archives/page/2/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/archives/page/2/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>归档 | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content archive"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <span class="collection-header">还行! 目前共计 44 篇日志。 继续努力。</span> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/b6e6b630/" itemprop="url"> <span itemprop="name">玩文明六玩爽了</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/38c422a2/" itemprop="url"> <span itemprop="name">我的第一个博客</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/6ec2376e/" itemprop="url"> <span itemprop="name">hexo创建公益404界面</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/2283d3b7/" itemprop="url"> <span itemprop="name">本来想搬fishport_serverwiki来着</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/ca82fca4/" itemprop="url"> <span itemprop="name">工业博物馆游览</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/f899f771/" itemprop="url"> <span itemprop="name">LeetCode:2. 两数相加</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-25T20:42:35+08:00" content="2024-09-25"> 09-25 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/58ad3c48/" itemprop="url"> <span itemprop="name">连不上网了?可能的DNS解决方法</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-25T18:02:21+08:00" content="2024-09-25"> 09-25 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/c0981903/" itemprop="url"> <span itemprop="name">通过创建钢琴学习响应式网页设计</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-25T17:49:56+08:00" content="2024-09-25"> 09-25 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/52b92bfc/" itemprop="url"> <span itemprop="name">通过创建猫咪绘画学习中级 CSS</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-23T15:01:26+08:00" content="2024-09-23"> 09-23 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/6af33c89/" itemprop="url"> <span itemprop="name">神人有感:先礼礼礼礼礼礼后兵</span> </a> </div> </header> </article> </div> </div> <nav class="pagination"> <a class="extend prev" rel="prev" href="/archives/"><i class="fa fa-angle-left" aria-label="上一页"></i></a><a class="page-number" href="/archives/">1</a><span class="page-number current">2</span><a class="page-number" href="/archives/page/3/">3</a><span class="space">&hellip;</span><a class="page-number" href="/archives/page/5/">5</a><a class="extend next" rel="next" href="/archives/page/3/"><i class="fa fa-angle-right" aria-label="下一页"></i></a> </nav> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
archives/page/2/index.html
HTML
unknown
29,578
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/archives/page/3/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/archives/page/3/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>归档 | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content archive"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <span class="collection-header">还行! 目前共计 44 篇日志。 继续努力。</span> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-21T21:01:13+08:00" content="2024-09-21"> 09-21 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/9f32bac9/" itemprop="url"> <span itemprop="name">通过创建小测验学习无障碍</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-21T17:38:24+08:00" content="2024-09-21"> 09-21 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/42cabe35/" itemprop="url"> <span itemprop="name">hexo压缩资源,优化访问</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-20T18:58:27+08:00" content="2024-09-20"> 09-20 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/8403dd78/" itemprop="url"> <span itemprop="name">在hexo-next配置gitalk</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-20T17:22:58+08:00" content="2024-09-20"> 09-20 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/f513b372/" itemprop="url"> <span itemprop="name">为hexo-next建立静态说说</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-19T21:27:46+08:00" content="2024-09-19"> 09-19 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/e90bb5b9/" itemprop="url"> <span itemprop="name">探路:雨课堂的字体加密。</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-19T07:59:02+08:00" content="2024-09-19"> 09-19 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/261d7eb2/" itemprop="url"> <span itemprop="name">为Hexo博客提供订阅服务</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-16T13:27:19+08:00" content="2024-09-16"> 09-16 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/d09c70b/" itemprop="url"> <span itemprop="name">通过创建照片集学习 CSS 弹性盒子</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-16T11:18:02+08:00" content="2024-09-16"> 09-16 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/5129f3bd/" itemprop="url"> <span itemprop="name">通过创作罗斯科绘画学习 CSS 盒子模型</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-15T20:31:15+08:00" content="2024-09-15"> 09-15 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/2f3d653d/" itemprop="url"> <span itemprop="name">LeetCode:1. 两数之和</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-15T16:43:40+08:00" content="2024-09-15"> 09-15 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/f7250b56/" itemprop="url"> <span itemprop="name">独立地写了一个调查表:)</span> </a> </div> </header> </article> </div> </div> <nav class="pagination"> <a class="extend prev" rel="prev" href="/archives/page/2/"><i class="fa fa-angle-left" aria-label="上一页"></i></a><a class="page-number" href="/archives/">1</a><a class="page-number" href="/archives/page/2/">2</a><span class="page-number current">3</span><a class="page-number" href="/archives/page/4/">4</a><a class="page-number" href="/archives/page/5/">5</a><a class="extend next" rel="next" href="/archives/page/4/"><i class="fa fa-angle-right" aria-label="下一页"></i></a> </nav> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
archives/page/3/index.html
HTML
unknown
29,626
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/archives/page/4/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/archives/page/4/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>归档 | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content archive"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <span class="collection-header">还行! 目前共计 44 篇日志。 继续努力。</span> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-15T15:00:41+08:00" content="2024-09-15"> 09-15 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/5e40dbcf/" itemprop="url"> <span itemprop="name">通过创建注册表单学习 HTML 表单</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-15T12:28:24+08:00" content="2024-09-15"> 09-15 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/e10534d7/" itemprop="url"> <span itemprop="name">通过创建一组彩色笔学习 CSS 颜色</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-15T10:08:12+08:00" content="2024-09-15"> 09-15 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/fc7dd4b4/" itemprop="url"> <span itemprop="name">为github主页设计美化介绍</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-14T19:16:27+08:00" content="2024-09-14"> 09-14 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/62fedd1e/" itemprop="url"> <span itemprop="name">hexo创建一个友情链接页面</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-14T18:38:52+08:00" content="2024-09-14"> 09-14 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/69cc9e5f/" itemprop="url"> <span itemprop="name">hexo-next在侧边栏添加IP信息</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-13T21:17:36+08:00" content="2024-09-13"> 09-13 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/36b96013/" itemprop="url"> <span itemprop="name">通过创建咖啡店菜单学习基础CSS</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-13T19:36:15+08:00" content="2024-09-13"> 09-13 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/dad78c45/" itemprop="url"> <span itemprop="name">第一次Pull requests :)</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-11T17:28:10+08:00" content="2024-09-11"> 09-11 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/c42bc0f8/" itemprop="url"> <span itemprop="name">给博客右上角添加github跳转图标</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-11T17:09:40+08:00" content="2024-09-11"> 09-11 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/6273631e/" itemprop="url"> <span itemprop="name">通过创建猫咪相册应用学习HTML</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-04T16:03:03+08:00" content="2024-09-04"> 09-04 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/50aa0545/" itemprop="url"> <span itemprop="name">hexo-next在文章下添加版权信息</span> </a> </div> </header> </article> </div> </div> <nav class="pagination"> <a class="extend prev" rel="prev" href="/archives/page/3/"><i class="fa fa-angle-left" aria-label="上一页"></i></a><a class="page-number" href="/archives/">1</a><span class="space">&hellip;</span><a class="page-number" href="/archives/page/3/">3</a><span class="page-number current">4</span><a class="page-number" href="/archives/page/5/">5</a><a class="extend next" rel="next" href="/archives/page/5/"><i class="fa fa-angle-right" aria-label="下一页"></i></a> </nav> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
archives/page/4/index.html
HTML
unknown
29,645
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/archives/page/5/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/archives/page/5/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>归档 | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content archive"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <span class="collection-header">还行! 目前共计 44 篇日志。 继续努力。</span> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-04T15:02:00+08:00" content="2024-09-04"> 09-04 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/59a1e261/" itemprop="url"> <span itemprop="name">hexon:hexo的可视化编辑</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-03T20:55:09+08:00" content="2024-09-03"> 09-03 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/ceb862dd/" itemprop="url"> <span itemprop="name">whatgalgame</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-06-23T16:33:26+08:00" content="2024-06-23"> 06-23 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/f5bf34a0/" itemprop="url"> <span itemprop="name">forever</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-06-21T21:15:25+08:00" content="2024-06-21"> 06-21 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/e855e869/" itemprop="url"> <span itemprop="name">哈基米</span> </a> </div> </header> </article> </div> </div> <nav class="pagination"> <a class="extend prev" rel="prev" href="/archives/page/4/"><i class="fa fa-angle-left" aria-label="上一页"></i></a><a class="page-number" href="/archives/">1</a><span class="space">&hellip;</span><a class="page-number" href="/archives/page/4/">4</a><span class="page-number current">5</span> </nav> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
archives/page/5/index.html
HTML
unknown
26,032
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/categories/CSS/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/categories/CSS/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>分类: CSS | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content category"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <h2 class="collection-header">CSS <small>分类</small> </h2> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-25T18:02:21+08:00" content="2024-09-25"> 09-25 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/c0981903/" itemprop="url"> <span itemprop="name">通过创建钢琴学习响应式网页设计</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-25T17:49:56+08:00" content="2024-09-25"> 09-25 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/52b92bfc/" itemprop="url"> <span itemprop="name">通过创建猫咪绘画学习中级 CSS</span> </a> </div> </header> </article> </div> </div> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
categories/CSS/index.html
HTML
unknown
24,666
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/categories/HTML/CSS/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/categories/HTML/CSS/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>分类: CSS | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content category"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <h2 class="collection-header">CSS <small>分类</small> </h2> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/d8587a7c/" itemprop="url"> <span itemprop="name">通过创建资产负债表学习 CSS 伪选择器</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-21T21:01:13+08:00" content="2024-09-21"> 09-21 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/9f32bac9/" itemprop="url"> <span itemprop="name">通过创建小测验学习无障碍</span> </a> </div> </header> </article> </div> </div> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
categories/HTML/CSS/index.html
HTML
unknown
24,677
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/categories/HTML/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/categories/HTML/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>分类: HTML | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content category"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <h2 class="collection-header">HTML <small>分类</small> </h2> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/d8587a7c/" itemprop="url"> <span itemprop="name">通过创建资产负债表学习 CSS 伪选择器</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-21T21:01:13+08:00" content="2024-09-21"> 09-21 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/9f32bac9/" itemprop="url"> <span itemprop="name">通过创建小测验学习无障碍</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-15T15:00:41+08:00" content="2024-09-15"> 09-15 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/5e40dbcf/" itemprop="url"> <span itemprop="name">通过创建注册表单学习 HTML 表单</span> </a> </div> </header> </article> </div> </div> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
categories/HTML/index.html
HTML
unknown
25,233
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/categories/Vue3/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/categories/Vue3/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>分类: Vue3 | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content category"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <h2 class="collection-header">Vue3 <small>分类</small> </h2> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-29T18:19:17+08:00" content="2024-09-29"> 09-29 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/ffe80f36/" itemprop="url"> <span itemprop="name">Vue:计算属性</span> </a> </div> </header> </article> </div> </div> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
categories/Vue3/index.html
HTML
unknown
24,081
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/categories/Vue3/%E5%9F%BA%E7%A1%80/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/categories/Vue3/%E5%9F%BA%E7%A1%80/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>分类: 基础 | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content category"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <h2 class="collection-header">基础 <small>分类</small> </h2> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-29T18:19:17+08:00" content="2024-09-29"> 09-29 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/ffe80f36/" itemprop="url"> <span itemprop="name">Vue:计算属性</span> </a> </div> </header> </article> </div> </div> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
categories/Vue3/基础/index.html
HTML
unknown
24,123
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/categories/github/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/categories/github/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>分类: github | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content category"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <h2 class="collection-header">github <small>分类</small> </h2> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-15T10:08:12+08:00" content="2024-09-15"> 09-15 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/fc7dd4b4/" itemprop="url"> <span itemprop="name">为github主页设计美化介绍</span> </a> </div> </header> </article> </div> </div> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
categories/github/index.html
HTML
unknown
24,106
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="整理好的分类"> <meta property="og:url" content="https://xingwangzhe.fun/categories/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:published_time" content="2024-06-23T03:58:28.000Z"> <meta property="article:modified_time" content="2024-06-25T10:41:11.571Z"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/categories/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>整理好的分类 | 姓王者的博客 </title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content page posts-expand"> <div class="post-block" lang="zh-CN"> <header class="post-header"> <h1 class="post-title" itemprop="name headline">整理好的分类 </h1> <div class="post-meta"> </div> </header> <div class="post-body"> <div class="category-all-page"> <div class="category-all-title"> 目前共计 29 个分类 </div> <div class="category-all"> <ul class="category-list"><li class="category-list-item"><a class="category-list-link" href="/categories/CSS/">CSS</a><span class="category-list-count">2</span></li><li class="category-list-item"><a class="category-list-link" href="/categories/HTML/">HTML</a><span class="category-list-count">3</span><ul class="category-list-child"><li class="category-list-item"><a class="category-list-link" href="/categories/HTML/CSS/">CSS</a><span class="category-list-count">2</span></li></ul></li><li class="category-list-item"><a class="category-list-link" href="/categories/Vue3/">Vue3</a><span class="category-list-count">1</span><ul class="category-list-child"><li class="category-list-item"><a class="category-list-link" href="/categories/Vue3/%E5%9F%BA%E7%A1%80/">基础</a><span class="category-list-count">1</span></li></ul></li><li class="category-list-item"><a class="category-list-link" href="/categories/github/">github</a><span class="category-list-count">1</span></li><li class="category-list-item"><a class="category-list-link" href="/categories/%E5%89%8D%E7%AB%AF/">前端</a><span class="category-list-count">10</span><ul class="category-list-child"><li class="category-list-item"><a class="category-list-link" href="/categories/%E5%89%8D%E7%AB%AF/CSS/">CSS</a><span class="category-list-count">3</span><ul class="category-list-child"><li class="category-list-item"><a class="category-list-link" href="/categories/%E5%89%8D%E7%AB%AF/CSS/%E5%93%88%E5%9F%BA%E7%B1%B3%E7%88%B1%E7%8C%ABtv/">哈基米爱猫tv</a><span class="category-list-count">1</span></li></ul></li><li class="category-list-item"><a class="category-list-link" href="/categories/%E5%89%8D%E7%AB%AF/HTML/">HTML</a><span class="category-list-count">3</span></li><li class="category-list-item"><a class="category-list-link" href="/categories/%E5%89%8D%E7%AB%AF/Vue3/">Vue3</a><span class="category-list-count">2</span></li><li class="category-list-item"><a class="category-list-link" href="/categories/%E5%89%8D%E7%AB%AF/js/">js</a><span class="category-list-count">1</span></li></ul></li><li class="category-list-item"><a class="category-list-link" href="/categories/%E5%9F%BA%E4%BA%8Ehexo%E7%9A%84%E5%8D%9A%E5%AE%A2%E6%90%AD%E5%BB%BA%E6%95%99%E7%A8%8B/">基于hexo的博客搭建教程</a><span class="category-list-count">11</span><ul class="category-list-child"><li class="category-list-item"><a class="category-list-link" href="/categories/%E5%9F%BA%E4%BA%8Ehexo%E7%9A%84%E5%8D%9A%E5%AE%A2%E6%90%AD%E5%BB%BA%E6%95%99%E7%A8%8B/gitalk/">gitalk</a><span class="category-list-count">1</span></li><li class="category-list-item"><a class="category-list-link" href="/categories/%E5%9F%BA%E4%BA%8Ehexo%E7%9A%84%E5%8D%9A%E5%AE%A2%E6%90%AD%E5%BB%BA%E6%95%99%E7%A8%8B/%E5%BC%80%E7%AF%87%E8%87%B4%E8%B0%A2/">开篇致谢</a><span class="category-list-count">1</span></li></ul></li><li class="category-list-item"><a class="category-list-link" href="/categories/%E5%9F%BA%E7%A1%80/">基础</a><span class="category-list-count">1</span></li><li class="category-list-item"><a class="category-list-link" href="/categories/%E6%8A%80%E6%9C%AF/">技术</a><span class="category-list-count">1</span></li><li class="category-list-item"><a class="category-list-link" href="/categories/%E6%97%A5%E8%AE%B0/">日记</a><span class="category-list-count">5</span><ul class="category-list-child"><li class="category-list-item"><a class="category-list-link" href="/categories/%E6%97%A5%E8%AE%B0/%E8%BF%B7/">迷</a><span class="category-list-count">1</span></li></ul></li><li class="category-list-item"><a class="category-list-link" href="/categories/%E6%B5%8F%E8%A7%88%E5%99%A8/">浏览器</a><span class="category-list-count">1</span></li><li class="category-list-item"><a class="category-list-link" href="/categories/%E6%B8%B8%E6%88%8F/">游戏</a><span class="category-list-count">1</span><ul class="category-list-child"><li class="category-list-item"><a class="category-list-link" href="/categories/%E6%B8%B8%E6%88%8F/%E6%88%91%E7%9A%84%E4%B8%96%E7%95%8C%E6%9C%8D%E5%8A%A1%E5%99%A8/">我的世界服务器</a><span class="category-list-count">1</span></li></ul></li><li class="category-list-item"><a class="category-list-link" href="/categories/%E7%AE%97%E6%B3%95%E9%A2%98/">算法题</a><span class="category-list-count">2</span><ul class="category-list-child"><li class="category-list-item"><a class="category-list-link" href="/categories/%E7%AE%97%E6%B3%95%E9%A2%98/LeetCode/">LeetCode</a><span class="category-list-count">2</span></li></ul></li><li class="category-list-item"><a class="category-list-link" href="/categories/%E8%83%A1%E6%80%9D%E4%B9%B1%E6%83%B3/">胡思乱想</a><span class="category-list-count">2</span><ul class="category-list-child"><li class="category-list-item"><a class="category-list-link" href="/categories/%E8%83%A1%E6%80%9D%E4%B9%B1%E6%83%B3/%E5%93%88%E5%9F%BA%E7%B1%B3%E7%88%B1%E7%8C%ABtv/">哈基米爱猫tv</a><span class="category-list-count">1</span><ul class="category-list-child"><li class="category-list-item"><a class="category-list-link" href="/categories/%E8%83%A1%E6%80%9D%E4%B9%B1%E6%83%B3/%E5%93%88%E5%9F%BA%E7%B1%B3%E7%88%B1%E7%8C%ABtv/%E5%A4%A7%E7%9F%B3%E7%A2%8E%E8%83%B8%E5%8F%A3/">大石碎胸口</a><span class="category-list-count">1</span></li></ul></li></ul></li><li class="category-list-item"><a class="category-list-link" href="/categories/%E8%BF%B7/">迷</a><span class="category-list-count">1</span><ul class="category-list-child"><li class="category-list-item"><a class="category-list-link" href="/categories/%E8%BF%B7/%E6%B8%B8%E6%88%8F/">游戏</a><span class="category-list-count">1</span></li></ul></li></ul> </div> </div> </div> </div> </div> <div class="tabs tabs-comment"> <ul class="nav-tabs"> <li class="tab"><a href="#comment-gitalk">gitalk</a></li> <li class="tab"><a href="#comment-livere">livere</a></li> </ul> <div class="tab-content"> <div class="tab-pane gitalk" id="comment-gitalk"> <div class="comments" id="gitalk-container"></div> </div> <div class="tab-pane livere" id="comment-livere"> <div class="comments"> <div id="lv-container" data-id="city" data-uid="MTAyMC81OTkzNi8zNjM5OQ=="></div> </div> </div> </div> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/gitalk@1/dist/gitalk.min.css"> <script> NexT.utils.loadComments(document.querySelector('#gitalk-container'), () => { NexT.utils.getScript('//cdn.jsdelivr.net/npm/gitalk@1/dist/gitalk.min.js', () => { var gitalk = new Gitalk({ clientID : 'Ov23lifXHoq97dbVMtsq', clientSecret: '5b1323c3b64bd4fef3f3a56e2c7ada191b416bf4', repo : 'xingwangzhe.github.io', owner : 'xingwangzhe', admin : ['xingwangzhe'], id : 'a676607444a8bc8b150c9a3aff884e61', language: 'zh-CN', distractionFreeMode: true }); gitalk.render('gitalk-container'); }, window.Gitalk); }); </script> <script> NexT.utils.loadComments(document.querySelector('#lv-container'), () => { window.livereOptions = { refer: location.pathname.replace(CONFIG.root, '').replace('index.html', '') }; (function(d, s) { var j, e = d.getElementsByTagName(s)[0]; if (typeof LivereTower === 'function') { return; } j = d.createElement(s); j.src = 'https://cdn-city.livere.com/js/embed.dist.js'; j.async = true; e.parentNode.insertBefore(j, e); })(document, 'script'); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
categories/index.html
HTML
unknown
31,467
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/categories/%E5%89%8D%E7%AB%AF/CSS/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/categories/%E5%89%8D%E7%AB%AF/CSS/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>分类: CSS | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content category"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <h2 class="collection-header">CSS <small>分类</small> </h2> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-16T13:27:19+08:00" content="2024-09-16"> 09-16 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/d09c70b/" itemprop="url"> <span itemprop="name">通过创建照片集学习 CSS 弹性盒子</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-16T11:18:02+08:00" content="2024-09-16"> 09-16 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/5129f3bd/" itemprop="url"> <span itemprop="name">通过创作罗斯科绘画学习 CSS 盒子模型</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-13T21:17:36+08:00" content="2024-09-13"> 09-13 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/36b96013/" itemprop="url"> <span itemprop="name">通过创建咖啡店菜单学习基础CSS</span> </a> </div> </header> </article> </div> </div> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
categories/前端/CSS/index.html
HTML
unknown
25,274
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/categories/%E5%89%8D%E7%AB%AF/CSS/%E5%93%88%E5%9F%BA%E7%B1%B3%E7%88%B1%E7%8C%ABtv/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/categories/%E5%89%8D%E7%AB%AF/CSS/%E5%93%88%E5%9F%BA%E7%B1%B3%E7%88%B1%E7%8C%ABtv/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>分类: 哈基米爱猫tv | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content category"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <h2 class="collection-header">哈基米爱猫tv <small>分类</small> </h2> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-16T13:27:19+08:00" content="2024-09-16"> 09-16 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/d09c70b/" itemprop="url"> <span itemprop="name">通过创建照片集学习 CSS 弹性盒子</span> </a> </div> </header> </article> </div> </div> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
categories/前端/CSS/哈基米爱猫tv/index.html
HTML
unknown
24,266
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/categories/%E5%89%8D%E7%AB%AF/HTML/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/categories/%E5%89%8D%E7%AB%AF/HTML/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>分类: HTML | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content category"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <h2 class="collection-header">HTML <small>分类</small> </h2> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-15T16:43:40+08:00" content="2024-09-15"> 09-15 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/f7250b56/" itemprop="url"> <span itemprop="name">独立地写了一个调查表:)</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-15T12:28:24+08:00" content="2024-09-15"> 09-15 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/e10534d7/" itemprop="url"> <span itemprop="name">通过创建一组彩色笔学习 CSS 颜色</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-11T17:09:40+08:00" content="2024-09-11"> 09-11 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/6273631e/" itemprop="url"> <span itemprop="name">通过创建猫咪相册应用学习HTML</span> </a> </div> </header> </article> </div> </div> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
categories/前端/HTML/index.html
HTML
unknown
25,263
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/categories/%E5%89%8D%E7%AB%AF/Vue3/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/categories/%E5%89%8D%E7%AB%AF/Vue3/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>分类: Vue3 | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content category"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <h2 class="collection-header">Vue3 <small>分类</small> </h2> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-30T21:19:04+08:00" content="2024-09-30"> 09-30 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/b0f770c3/" itemprop="url"> <span itemprop="name">Vue:watch监视</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:19:55+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/218fcad3/" itemprop="url"> <span itemprop="name">初识Vue3,有趣</span> </a> </div> </header> </article> </div> </div> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
categories/前端/Vue3/index.html
HTML
unknown
24,655
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/categories/%E5%89%8D%E7%AB%AF/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/categories/%E5%89%8D%E7%AB%AF/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>分类: 前端 | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content category"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <h2 class="collection-header">前端 <small>分类</small> </h2> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-30T21:19:04+08:00" content="2024-09-30"> 09-30 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/b0f770c3/" itemprop="url"> <span itemprop="name">Vue:watch监视</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:19:55+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/218fcad3/" itemprop="url"> <span itemprop="name">初识Vue3,有趣</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/fcbe0bf5/" itemprop="url"> <span itemprop="name">学了点js</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-19T21:27:46+08:00" content="2024-09-19"> 09-19 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/e90bb5b9/" itemprop="url"> <span itemprop="name">探路:雨课堂的字体加密。</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-16T13:27:19+08:00" content="2024-09-16"> 09-16 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/d09c70b/" itemprop="url"> <span itemprop="name">通过创建照片集学习 CSS 弹性盒子</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-16T11:18:02+08:00" content="2024-09-16"> 09-16 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/5129f3bd/" itemprop="url"> <span itemprop="name">通过创作罗斯科绘画学习 CSS 盒子模型</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-15T16:43:40+08:00" content="2024-09-15"> 09-15 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/f7250b56/" itemprop="url"> <span itemprop="name">独立地写了一个调查表:)</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-15T12:28:24+08:00" content="2024-09-15"> 09-15 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/e10534d7/" itemprop="url"> <span itemprop="name">通过创建一组彩色笔学习 CSS 颜色</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-13T21:17:36+08:00" content="2024-09-13"> 09-13 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/36b96013/" itemprop="url"> <span itemprop="name">通过创建咖啡店菜单学习基础CSS</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-11T17:09:40+08:00" content="2024-09-11"> 09-11 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/6273631e/" itemprop="url"> <span itemprop="name">通过创建猫咪相册应用学习HTML</span> </a> </div> </header> </article> </div> </div> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
categories/前端/index.html
HTML
unknown
29,109
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/categories/%E5%89%8D%E7%AB%AF/js/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/categories/%E5%89%8D%E7%AB%AF/js/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>分类: js | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content category"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <h2 class="collection-header">js <small>分类</small> </h2> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/fcbe0bf5/" itemprop="url"> <span itemprop="name">学了点js</span> </a> </div> </header> </article> </div> </div> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
categories/前端/js/index.html
HTML
unknown
24,106
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/categories/%E5%9F%BA%E4%BA%8Ehexo%E7%9A%84%E5%8D%9A%E5%AE%A2%E6%90%AD%E5%BB%BA%E6%95%99%E7%A8%8B/gitalk/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/categories/%E5%9F%BA%E4%BA%8Ehexo%E7%9A%84%E5%8D%9A%E5%AE%A2%E6%90%AD%E5%BB%BA%E6%95%99%E7%A8%8B/gitalk/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>分类: gitalk | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content category"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <h2 class="collection-header">gitalk <small>分类</small> </h2> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-20T18:58:27+08:00" content="2024-09-20"> 09-20 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/8403dd78/" itemprop="url"> <span itemprop="name">在hexo-next配置gitalk</span> </a> </div> </header> </article> </div> </div> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
categories/基于hexo的博客搭建教程/gitalk/index.html
HTML
unknown
24,269
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/categories/%E5%9F%BA%E4%BA%8Ehexo%E7%9A%84%E5%8D%9A%E5%AE%A2%E6%90%AD%E5%BB%BA%E6%95%99%E7%A8%8B/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/categories/%E5%9F%BA%E4%BA%8Ehexo%E7%9A%84%E5%8D%9A%E5%AE%A2%E6%90%AD%E5%BB%BA%E6%95%99%E7%A8%8B/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>分类: 基于hexo的博客搭建教程 | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content category"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <h2 class="collection-header">基于hexo的博客搭建教程 <small>分类</small> </h2> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/6ec2376e/" itemprop="url"> <span itemprop="name">hexo创建公益404界面</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-21T17:38:24+08:00" content="2024-09-21"> 09-21 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/42cabe35/" itemprop="url"> <span itemprop="name">hexo压缩资源,优化访问</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-20T18:58:27+08:00" content="2024-09-20"> 09-20 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/8403dd78/" itemprop="url"> <span itemprop="name">在hexo-next配置gitalk</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-20T17:22:58+08:00" content="2024-09-20"> 09-20 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/f513b372/" itemprop="url"> <span itemprop="name">为hexo-next建立静态说说</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-19T07:59:02+08:00" content="2024-09-19"> 09-19 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/261d7eb2/" itemprop="url"> <span itemprop="name">为Hexo博客提供订阅服务</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-14T19:16:27+08:00" content="2024-09-14"> 09-14 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/62fedd1e/" itemprop="url"> <span itemprop="name">hexo创建一个友情链接页面</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-14T18:38:52+08:00" content="2024-09-14"> 09-14 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/69cc9e5f/" itemprop="url"> <span itemprop="name">hexo-next在侧边栏添加IP信息</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-11T17:28:10+08:00" content="2024-09-11"> 09-11 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/c42bc0f8/" itemprop="url"> <span itemprop="name">给博客右上角添加github跳转图标</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-04T16:03:03+08:00" content="2024-09-04"> 09-04 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/50aa0545/" itemprop="url"> <span itemprop="name">hexo-next在文章下添加版权信息</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-04T15:02:00+08:00" content="2024-09-04"> 09-04 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/59a1e261/" itemprop="url"> <span itemprop="name">hexon:hexo的可视化编辑</span> </a> </div> </header> </article> </div> </div> <nav class="pagination"> <span class="page-number current">1</span><a class="page-number" href="/categories/%E5%9F%BA%E4%BA%8Ehexo%E7%9A%84%E5%8D%9A%E5%AE%A2%E6%90%AD%E5%BB%BA%E6%95%99%E7%A8%8B/page/2/">2</a><a class="extend next" rel="next" href="/categories/%E5%9F%BA%E4%BA%8Ehexo%E7%9A%84%E5%8D%9A%E5%AE%A2%E6%90%AD%E5%BB%BA%E6%95%99%E7%A8%8B/page/2/"><i class="fa fa-angle-right" aria-label="下一页"></i></a> </nav> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
categories/基于hexo的博客搭建教程/index.html
HTML
unknown
29,714
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/categories/%E5%9F%BA%E4%BA%8Ehexo%E7%9A%84%E5%8D%9A%E5%AE%A2%E6%90%AD%E5%BB%BA%E6%95%99%E7%A8%8B/page/2/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/categories/%E5%9F%BA%E4%BA%8Ehexo%E7%9A%84%E5%8D%9A%E5%AE%A2%E6%90%AD%E5%BB%BA%E6%95%99%E7%A8%8B/page/2/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>分类: 基于hexo的博客搭建教程 | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content category"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <h2 class="collection-header">基于hexo的博客搭建教程 <small>分类</small> </h2> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-06-23T16:33:26+08:00" content="2024-06-23"> 06-23 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/f5bf34a0/" itemprop="url"> <span itemprop="name">forever</span> </a> </div> </header> </article> </div> </div> <nav class="pagination"> <a class="extend prev" rel="prev" href="/categories/%E5%9F%BA%E4%BA%8Ehexo%E7%9A%84%E5%8D%9A%E5%AE%A2%E6%90%AD%E5%BB%BA%E6%95%99%E7%A8%8B/"><i class="fa fa-angle-left" aria-label="上一页"></i></a><a class="page-number" href="/categories/%E5%9F%BA%E4%BA%8Ehexo%E7%9A%84%E5%8D%9A%E5%AE%A2%E6%90%AD%E5%BB%BA%E6%95%99%E7%A8%8B/">1</a><span class="page-number current">2</span> </nav> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
categories/基于hexo的博客搭建教程/page/2/index.html
HTML
unknown
24,721
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/categories/%E5%9F%BA%E4%BA%8Ehexo%E7%9A%84%E5%8D%9A%E5%AE%A2%E6%90%AD%E5%BB%BA%E6%95%99%E7%A8%8B/%E5%BC%80%E7%AF%87%E8%87%B4%E8%B0%A2/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/categories/%E5%9F%BA%E4%BA%8Ehexo%E7%9A%84%E5%8D%9A%E5%AE%A2%E6%90%AD%E5%BB%BA%E6%95%99%E7%A8%8B/%E5%BC%80%E7%AF%87%E8%87%B4%E8%B0%A2/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>分类: 开篇致谢 | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content category"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <h2 class="collection-header">开篇致谢 <small>分类</small> </h2> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-06-23T16:33:26+08:00" content="2024-06-23"> 06-23 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/f5bf34a0/" itemprop="url"> <span itemprop="name">forever</span> </a> </div> </header> </article> </div> </div> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
categories/基于hexo的博客搭建教程/开篇致谢/index.html
HTML
unknown
24,324
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/categories/%E5%9F%BA%E7%A1%80/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/categories/%E5%9F%BA%E7%A1%80/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>分类: 基础 | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content category"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <h2 class="collection-header">基础 <small>分类</small> </h2> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-10-11T18:09:21+08:00" content="2024-10-11"> 10-11 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/93f836cb/" itemprop="url"> <span itemprop="name">开往 友链接力!</span> </a> </div> </header> </article> </div> </div> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
categories/基础/index.html
HTML
unknown
24,117
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/categories/%E6%8A%80%E6%9C%AF/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/categories/%E6%8A%80%E6%9C%AF/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>分类: 技术 | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content category"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <h2 class="collection-header">技术 <small>分类</small> </h2> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-25T20:42:35+08:00" content="2024-09-25"> 09-25 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/58ad3c48/" itemprop="url"> <span itemprop="name">连不上网了?可能的DNS解决方法</span> </a> </div> </header> </article> </div> </div> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
categories/技术/index.html
HTML
unknown
24,139
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/categories/%E6%97%A5%E8%AE%B0/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/categories/%E6%97%A5%E8%AE%B0/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>分类: 日记 | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content category"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <h2 class="collection-header">日记 <small>分类</small> </h2> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-28T20:48:54+08:00" content="2024-09-28"> 09-28 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/90edeb6d/" itemprop="url"> <span itemprop="name">信息技术基数实训-焊接爱心花灯</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/b6e6b630/" itemprop="url"> <span itemprop="name">玩文明六玩爽了</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/38c422a2/" itemprop="url"> <span itemprop="name">我的第一个博客</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-27T22:05:24+08:00" content="2024-09-27"> 09-27 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/ca82fca4/" itemprop="url"> <span itemprop="name">工业博物馆游览</span> </a> </div> </header> </article> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-13T19:36:15+08:00" content="2024-09-13"> 09-13 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/dad78c45/" itemprop="url"> <span itemprop="name">第一次Pull requests :)</span> </a> </div> </header> </article> </div> </div> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
categories/日记/index.html
HTML
unknown
26,308
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"> <meta name="theme-color" content="#222"> <meta name="generator" content="Hexo 7.2.0"> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o63weqvwcw"); </script> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png"> <link rel="mask-icon" href="/images/logo.svg" color="#222"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <script id="hexo-configurations"> var NexT = window.NexT || {}; var CONFIG = {"hostname":"xingwangzhe.fun","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":true,"show_result":true,"style":"mac"},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"text":true,"style":"tabs","count":true,"active":"gitalk","storage":true,"lazyload":false,"nav":{"gitalk":{"order":-1}},"activeClass":"gitalk"},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},"path":"search.xml"}; </script> <meta property="og:type" content="website"> <meta property="og:title" content="姓王者的博客"> <meta property="og:url" content="https://xingwangzhe.fun/categories/%E6%97%A5%E8%AE%B0/%E8%BF%B7/index.html"> <meta property="og:site_name" content="姓王者的博客"> <meta property="og:locale" content="zh_CN"> <meta property="article:author" content="姓王者"> <meta property="article:tag" content="xingwangzhe,姓王者的博客,姓王者,姓王者的blog,姓王者无敌,王兴家,hexo,前端,web,js,html,css,vue,react,angular,node,python,java,go,rust,swift,php,mysql,mongodb,redis,linux,docker,kubernetes,git,github,markdown,seo,webpush,web-push,web-push-notification,web-push-api,web-push-protocol,web-push-service-worker,web-push-api-service-worker,web-push-api-service-worker-protocol,web-push-api-service-worker-specification,web-push-api-service-worker-specification-draft,web-push-api-service-worker-specification-draft-01,web-push-api-service-worker-specification-draft-02,web-push-api-service-worker-specification-draft-03,web-push-api-service-worker-specification-draft-04,web-push-api-service-worker-specification-draft"> <meta name="twitter:card" content="summary"> <link rel="canonical" href="https://xingwangzhe.fun/categories/%E6%97%A5%E8%AE%B0/%E8%BF%B7/"> <script id="page-configurations"> // https://hexo.io/docs/variables.html CONFIG.page = { sidebar: "", isHome : false, isPost : false, lang : 'zh-CN' }; </script> <script async src="/lib/fireworks.js"></script> <title>分类: 迷 | 姓王者的博客</title> <noscript> <style> .use-motion .brand, .use-motion .menu-item, .sidebar-inner, .use-motion .post-block, .use-motion .pagination, .use-motion .comments, .use-motion .post-header, .use-motion .post-body, .use-motion .collection-header { opacity: initial; } .use-motion .site-title, .use-motion .site-subtitle { opacity: initial; top: initial; } .use-motion .logo-line-before i { left: initial; } .use-motion .logo-line-after i { right: initial; } </style> </noscript> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "o32sgd266v"); </script> <link rel="alternate" href="/atom.xml" title="姓王者的博客" type="application/atom+xml"> <link rel="alternate" href="/rss2.xml" title="姓王者的博客" type="application/rss+xml"> <style>.darkmode--activated{--body-bg-color:#282828;--content-bg-color:#333;--card-bg-color:#555;--text-color:#ccc;--blockquote-color:#bbb;--link-color:#ccc;--link-hover-color:#eee;--brand-color:#ddd;--brand-hover-color:#ddd;--table-row-odd-bg-color:#282828;--table-row-hover-bg-color:#363636;--menu-item-bg-color:#555;--btn-default-bg:#222;--btn-default-color:#ccc;--btn-default-border-color:#555;--btn-default-hover-bg:#666;--btn-default-hover-color:#ccc;--btn-default-hover-border-color:#666;--highlight-background:#282b2e;--highlight-foreground:#a9b7c6;--highlight-gutter-background:#34393d;--highlight-gutter-foreground:#9ca9b6}.darkmode--activated img{opacity:.75}.darkmode--activated img:hover{opacity:.9}.darkmode--activated code{color:#69dbdc;background:0 0}button.darkmode-toggle{z-index:9999}.darkmode-ignore,img{display:flex!important}.beian img{display:inline-block!important}</style></head> <body> <!-- start webpushr code --> <script>(function(w,d, s, id) {if(typeof(w.webpushr)!=='undefined') return;w.webpushr=w.webpushr||function(){(w.webpushr.q=w.webpushr.q||[]).push(arguments)};var js, fjs = d.getElementsByTagName(s)[0];js = d.createElement(s); js.id = id;js.async=1;js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window,document, 'script', 'webpushr-jssdk'));webpushr('setup',{'key':'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script><!-- end webpushr code --> <body itemscope itemtype="http://schema.org/WebPage"> <div class="container use-motion"> <div class="headband"></div> <a href="https://github.com/xingwangzhe/" rel="external nofollow noreferrer" target="_blank" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style> <header class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"> <div class="site-brand-container"> <div class="site-nav-toggle"> <div class="toggle" aria-label="切换导航栏"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> </div> <div class="site-meta"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <h1 class="site-title">姓王者的博客</h1> <span class="logo-line-after"><i></i></span> </a> <p class="site-subtitle" itemprop="description">记录学习生活的琐事,或者技术文章:)</p> </div> <div class="site-nav-right"> <div class="toggle popup-trigger"> <i class="fa fa-search fa-fw fa-lg"></i> </div> </div> </div> <nav class="site-nav"> <ul id="menu" class="main-menu menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a> </li> <li class="menu-item menu-item-开往"> <a href="https://www.travellings.cn/go.html" rel="noopener external nofollow noreferrer" target="_blank"><i class="fa fa-train fa-fw"></i>开往</a> </li> <li class="menu-item menu-item-友情链接"> <a href="/%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5/" rel="section"><i class="fa fa-link fa-fw"></i>友情链接</a> </li> <li class="menu-item menu-item-推荐网站"> <a href="/%E6%8E%A8%E8%8D%90%E7%BD%91%E7%AB%99/" rel="section"><i class="fa fa-link fa-fw"></i>推荐网站</a> </li> <li class="menu-item menu-item-说说"> <a href="/essay/" rel="section"><i class="fas fa-pen fa-fw"></i>说说</a> </li> <li class="menu-item menu-item-rss"> <a href="/atom.xml" rel="section"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="menu-item menu-item-search"> <a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索 </a> </li> </ul> </nav> <div class="search-pop-overlay"> <div class="popup search-popup"> <div class="search-header"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <div class="search-input-container"> <input autocomplete="off" autocapitalize="off" placeholder="搜索..." spellcheck="false" type="search" class="search-input"> </div> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> </div> <div id="search-result"> <div id="no-result"> <i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i> </div> </div> </div> </div> </div> </header> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span>0%</span> </div> <div class="reading-progress-bar"></div> <main class="main"> <div class="main-inner"> <div class="content-wrap"> <div class="content category"> <div class="post-block"> <div class="posts-collapse"> <div class="collection-title"> <h2 class="collection-header">迷 <small>分类</small> </h2> </div> <div class="collection-year"> <span class="collection-header">2024</span> </div> <article itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <div class="post-meta"> <time itemprop="dateCreated" datetime="2024-09-13T19:36:15+08:00" content="2024-09-13"> 09-13 </time> </div> <div class="post-title"> <a class="post-title-link" href="/posts/dad78c45/" itemprop="url"> <span itemprop="name">第一次Pull requests :)</span> </a> </div> </header> </article> </div> </div> </div> <script> window.addEventListener('tabs:register', () => { let { activeClass } = CONFIG.comments; if (CONFIG.comments.storage) { activeClass = localStorage.getItem('comments_active') || activeClass; } if (activeClass) { let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`); if (activeTab) { activeTab.click(); } } }); if (CONFIG.comments.storage) { window.addEventListener('tabs:click', event => { if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return; let commentClass = event.target.classList[1]; localStorage.setItem('comments_active', commentClass); }); } </script> </div> <div class="toggle sidebar-toggle"> <span class="toggle-line toggle-line-first"></span> <span class="toggle-line toggle-line-middle"></span> <span class="toggle-line toggle-line-last"></span> </div> <aside class="sidebar"> <div class="sidebar-inner"> <ul class="sidebar-nav motion-element"> <li class="sidebar-nav-toc"> 文章目录 </li> <li class="sidebar-nav-overview"> 站点概览 </li> </ul> <!--noindex--> <div class="post-toc-wrap sidebar-panel"> </div> <!--/noindex--> <div class="site-overview-wrap sidebar-panel"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" alt="姓王者" src="/images/avatar.jpg"> <p class="site-author-name" itemprop="name">姓王者</p> <div class="site-description" itemprop="description"></div> </div> <div class="site-state-wrap motion-element"> <nav class="site-state"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">44</span> <span class="site-state-item-name">归档</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/"> <span class="site-state-item-count">29</span> <span class="site-state-item-name">分类</span></a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/"> <span class="site-state-item-count">48</span> <span class="site-state-item-name">标签</span></a> </div> </nav> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/xingwangzhe" title="GitHub → https:&#x2F;&#x2F;github.com&#x2F;xingwangzhe" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="/xingwangzhe@outlook.com" title="E-Mail → xingwangzhe@outlook.com"><i class="fa fa-envelope fa-fw"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://space.bilibili.com/1987297874" title="Bilibili → https:&#x2F;&#x2F;space.bilibili.com&#x2F;1987297874" rel="noopener external nofollow noreferrer" target="_blank"><i class="fab fa-youtube fa-fw"></i>Bilibili</a> </span> </div> <!-- CloudCalendar --> <div class="widget-wrap" style="width: 90%;margin-left: auto;margin-right: auto; opacity: 0.97;"> <div class="widget" id="CloudCalendar"></div> </div> </div> <div class="where is your ip"> <h3>访客信息</h3> <a target="_blank" rel="noopener external nofollow noreferrer" href="https://tool.lu/ip/"> <img src="https://tool.lu/netcard/"> </a> <a target="_blank" href="https://time.is/China" id="time_is_link" rel="nofollow noopener" style="font-size:20px">北京时间:</a> <span id="China_z43d" style="font-size:20px"></span> <script src="//widget.time.is/zh.js"></script> <script> time_is_widget.init({China_z43d:{template:"TIME<br>DATE<br>SUN", date_format:"year-monthnum-daynum dname", sun_format:"日出: srhour:srminute 日落: sshour:ssminute<br>昼长: dlhours时 dlminutes分", coords:"35.0000000,105.0000000"}}); </script> </div> </div> </aside> <div id="sidebar-dimmer"></div> </div> </main> <footer class="footer"> <div class="footer-inner"> <div class="copyright"> &copy; <span itemprop="copyrightYear">2024</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">姓王者</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-chart-area"></i> </span> <span class="post-meta-item-text">站点总字数:</span> <span title="站点总字数">116k</span> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-coffee"></i> </span> <span class="post-meta-item-text">站点阅读时长 &asymp;</span> <span title="站点阅读时长">1:45</span> </div> <div style="display: flex; align-items: center; justify-content: center;"> <a href="https://www.travellings.cn/go.html" target="_blank" rel="noopener external nofollow noreferrer" title="开往-友链接力"> <img src="https://www.travellings.cn/assets/logo.gif" alt="开往-友链接力" width="120"> </a> <a href="https://icp.dns163.cn/beian/ICP-2024100103.html" rel="external nofollow noreferrer" title="易AIA盟2024100103号" target="_blank" style="display: inline-flex; align-items: center; margin-right: 10px;"> <img src="https://icp.dns163.cn/static/picture/icplogoi.png" style="width: 20px; height: 20px; margin-right: 5px;"> 易AIA盟2024100103号 </a> <a target="_blank" href="https://beian.miit.cn.com/gov/search.php?query=xingwangzhe.fun" rel="external nofollow noreferrer" title="MIIT备20241054号" style="display: inline-flex; align-items: center;"> <img src="https://beian.miit.cn.com/logo.svg" alt="MIIT" width="20" style="margin-right: 5px;"> MIIT备20241054号 </a> <a href="https://www.gyfzlm.com/fanzha/NO-20240105.html" rel="external nofollow noreferrer" target="_blank"><img style="width:130px;height:45px;" src="https://www.gyfzlm.com/istatic/image/gyfzlogo.png" alt="公益反诈联盟成员单位"></a> </div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script> var now = new Date(); function createtime() { var grt= new Date("6/21/2024 6:30: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 class="busuanzi-count"> <script async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script> <span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-user"></i> </span> <span class="site-uv" title="总访客量"> <span id="busuanzi_value_site_uv"></span> </span> </span> <span class="post-meta-divider">|</span> <span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;"> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="site-pv" title="总访问量"> <span id="busuanzi_value_site_pv"></span> </span> </span> </div> </div> </footer> </div> <script src="/lib/anime.min.js"></script> <script src="/lib/velocity/velocity.min.js"></script> <script src="/lib/velocity/velocity.ui.min.js"></script> <script src="/js/utils.js"></script> <script src="/js/motion.js"></script> <script src="/js/schemes/pisces.js"></script> <script src="/js/next-boot.js"></script> <script src="/js/local-search.js"></script> <!-- calendar widget --> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/calendar.min.js"></script> <script src="//cdn.jsdelivr.net/gh/theme-next/theme-next-calendar/languages.min.js"></script> <script> $(function() { $('#CloudCalendar').aCalendar('zh-CN', $.extend( '', { single:true, root:'/calendar/' } ) ); }); </script> <!-- hexo injector body_end start --><script data-pjax src="https://unpkg.com/oh-my-live2d"></script><script>const oml2d = OML2D.loadOml2d({libraryUrls:{"complete":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/complete.js","cubism2":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism2.js","cubism5":"https://registry.npmmirror.com/oh-my-live2d/latest/files/lib/cubism5.js"},mobileDisplay:false,models:[{"path":"/L2DMCVT_steve/L2DMCVT.model3.json","scale":0.11,"position":[-100,0],"mobileScale":0.08,"mobilePosition":[-100,0],"motionPreloadStrategy":"ALL","showHitAreaFrames":true,"mobileStageStyle":{"width":180},"stageStyle":{"width":250}}],parentElement:document.body,primaryColor:"var(--btn-bg)",sayHello:false,dockedPosition:"right",tips:{copyTips: {"message":["你复制了什么内容捏?记得注明出处哦~","ctrl+c复制,ctrl+v粘贴~","我们不生产文字,我们只是搬运工","我可是一直在盯着你:),我知道你在复制什么~"]},style: {"width":230,"height":120,"left":"calc(50% - 20px)","top":"-100px"},mobileStyle: {"width":180,"height":80,"left":"calc(50% - 30px)","top":"-100px"},idleTips:{interval:15000,message:["你好呀~","欢迎来到我的小站~"],wordTheDay:function(wordTheDayData){ return `${wordTheDayData.hitokoto} by.${wordTheDayData.from}`; } }},statusBar:{"restMessage":"你现在不能休息,周围有怪物在游荡"}});</script><!-- hexo injector body_end end --><script>(function (w, d, s, id) { if (typeof (w.webpushr) !== 'undefined') return; w.webpushr = w.webpushr || function () { (w.webpushr.q = w.webpushr.q || []).push(arguments) }; var js, fjs = d.getElementsByTagName(s)[0]; js = d.createElement(s); js.id = id; js.async = 1; js.src = "https://cdn.webpushr.com/app.min.js";fjs.parentNode.appendChild(js);}(window, document, 'script', 'webpushr-jssdk'));webpushr('setup', { 'key': 'BHV3kn7WLHGjPMT5Zz8kKEvzbDX44x9Rt3olfj_Q3QnCoQADtAW7h7dvBBmASSAi9xtRbIXoq2xEpmNWHaZb6NM' });</script></body> </html>
2303_806435pww/xingwangzhe.github.io_moved
categories/日记/迷/index.html
HTML
unknown
24,136