index.html 39.9 KB
Newer Older
T
TRHX 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<!--

               .@@@@@@@@@@@@@@@@^ .@@@@@@@@@@@\`    .@@@@@.   =@@@@^ .@@@@@@.   .@@@@@^      =@@@@@^         ./@@@@@@@@\.                      =@@@@@@@@@@@].     =@@@@O             ./@@@@@@@O`        .]@@@@@@@@].
               .@@@@@@@@@@@@@@@@^ .@@@@@@@@@@@@@@`  .@@@@@.   =@@@@^  .@@@@@@. .@@@@@^       =@@@@@.       ./@@@@@@@@@@@@`                     =@@@@@@@@@@@@@^    =@@@@O            /@@@@@@@@@@@@.    ./@@@@@@@@@@@/
               .[[[[[\@@@@@[[[[[` .@@@@@...,\@@@@@. .@@@@@.   =@@@@^   .\@@@@\./@@@@^        ,@@@@@.       =@@@@@`..[\@/.                      =@@@@/...\@@@@@    =@@@@O           =@@@@@/.,@@@@@@.  .@@@@@@/..,\/.
                     =@@@@O       .@@@@@.   .@@@@@. .@@@@@`.../@@@@^     \@@@@@@@@@`         .@@@@/        =@@@@@@].                           =@@@@^  ./@@@@^    =@@@@O          .@@@@@^   .@@@@@^  /@@@@@.
                     =@@@@O       .@@@@@]]]/@@@@@/  .@@@@@@@@@@@@@@^      =@@@@@@@`           =@@@^        .\@@@@@@@@@@]                       =@@@@@@@@@@@/.     =@@@@O          =@@@@@.    =@@@@O .@@@@@^  /@@@@@@^
                     =@@@@O       .@@@@@@@@@@@@@/.  .@@@@@@@@@@@@@@^      /@@@@@@@`           ,@@@.          .\@@@@@@@@@@^                     =@@@@@@@@@@@@@\.   =@@@@O          =@@@@@.    =@@@@O .@@@@@^  O@@@@@@^
                     =@@@@O       .@@@@@@@@@@@@^    .@@@@@.   =@@@@^    ./@@@@@@@@@`                             .[\@@@@@@.                    =@@@@^    =@@@@^   =@@@@O          .@@@@@^    @@@@@^  @@@@@\  ,[\@@@@^
                     =@@@@O       .@@@@@. ,@@@@@^   .@@@@@.   =@@@@^   .@@@@@`,@@@@@^                       ,@@\`...=@@@@@.                    =@@@@^  .,@@@@@^   =@@@@O.........  =@@@@@`../@@@@@.  ,@@@@@@]..=@@@@^
                     =@@@@O       .@@@@@.  ,@@@@@\  .@@@@@.   =@@@@^  ,@@@@@^  ,@@@@@\.                   .@@@@@@@@@@@@@@^                     =@@@@@@@@@@@@@@.   =@@@@@@@@@@@@@.  .\@@@@@@@@@@@@`    ,@@@@@@@@@@@@@^
                     =@@@@O       .@@@@@.   ,@@@@@\ .@@@@@.   =@@@@^ ,@@@@@^    ,@@@@@\.                   .[@@@@@@@@@@[.                      =@@@@@@@@@@@/`     =@@@@@@@@@@@@@.    .\@@@@@@@@`        ,\@@@@@@@@/`

-->                                                                          
T
TRHX 已提交
15 16 17 18
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
T
TRHX 已提交
19 20 21 22
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  
  <title>TRHX&#39;S BLOG</title>
  
T
TRHX 已提交
23 24 25
  
  <meta name="description" content="一个大学生用于自学的个人博客">
  
T
TRHX 已提交
26 27 28 29 30 31 32

  <link rel="alternate" href="/atom.xml" title="TRHX'S BLOG">

  <meta name="HandheldFriendly" content="True" />
  <meta name="apple-mobile-web-app-capable" content="yes">
  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
  <!-- meta -->
T
TRHX 已提交
33
  
T
TRHX 已提交
34
  
T
TRHX 已提交
35
  <meta name="theme-color" content="#f24e32">
T
TRHX 已提交
36
  
T
TRHX 已提交
37
  <meta name="msapplication-TileColor" content="#f24e32">
T
TRHX 已提交
38
  
T
TRHX 已提交
39
  <meta name="msapplication-config" content="https://cdn.jsdelivr.net/gh/xaoxuu/assets@18.12.27/favicon/favicons/browserconfig.xml">
T
TRHX 已提交
40
  
T
TRHX 已提交
41
  
T
TRHX 已提交
42 43 44 45 46 47 48 49
  <!-- link -->
  
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/node-waves@0.7.6/dist/waves.min.css">
  
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.6.3/css/all.min.css">

  
  
T
TRHX 已提交
50
  <link rel="shortcut icon" href="https://trhx.top/images/trhx.png"
T
TRHX 已提交
51 52 53 54 55 56
   type="image/x-icon"
  
  
  
  >
  
T
TRHX 已提交
57
  <link rel="icon" href="https://trhx.top/images/trhx.png"
T
TRHX 已提交
58
   type="image/x-icon"
T
TRHX 已提交
59 60 61 62 63
   sizes="32x32"
  
  
  >
  
T
TRHX 已提交
64
  <link rel="apple-touch-icon" href="https://trhx.top/images/trhx.png"
T
TRHX 已提交
65 66 67 68 69 70
   type="image/png"
   sizes="180x180"
  
  
  >
  
T
TRHX 已提交
71
  <link rel="mask-icon" href="https://trhx.top/images/trhx.png"
T
TRHX 已提交
72 73 74 75 76 77
  
  
  
  
   color="#f24e32">
  
T
TRHX 已提交
78
  <link rel="manifest" href="https://cdn.jsdelivr.net/gh/xaoxuu/assets@18.12.27/favicon/favicons/site.webmanifest"
T
TRHX 已提交
79
  
T
TRHX 已提交
80
  
T
TRHX 已提交
81 82
  
  
T
TRHX 已提交
83 84 85 86 87
  >
  
  

  
T
TRHX 已提交
88
  <link rel="stylesheet" href="/style.css">
T
TRHX 已提交
89 90 91 92 93 94
  

  



T
TRHX 已提交
95
  <script>
T
TRHX 已提交
96 97 98
    function setLoadingBarProgress(num) {
      document.getElementById('loading-bar').style.width=num+"%";
    }
T
TRHX 已提交
99
  </script>
T
TRHX 已提交
100 101 102

  
  
T
TRHX 已提交
103 104 105 106 107 108 109 110 111 112 113
    <!-- ba -->
    <script>
    var _hmt = _hmt || [];
    (function() {
      var hm = document.createElement("script");
      hm.src = "https://hm.baidu.com/hm.js?68019af241ffe13fed16341dc16acd4f";
      var s = document.getElementsByTagName("script")[0];
      s.parentNode.insertBefore(hm, s);
    })();
    </script>
  
T
TRHX 已提交
114
</head>
T
TRHX 已提交
115

T
TRHX 已提交
116
<body>
T
TRHX 已提交
117 118 119 120 121 122 123 124 125
    <div id="loading-bar-wrapper">
  <div id="loading-bar" class="material"></div>
</div>

    <script>setLoadingBarProgress(20)</script>
    <header class="l_header material">
	<div class='wrapper'>
		<div class="nav-main container container--flex">
      <a class="logo flat-box" href='/' >
T
TRHX 已提交
126
        
T
TRHX 已提交
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
          TRHX'S BLOG
        
      </a>
			<div class='menu'>
				<ul class='h-list'>
          
  					
  						<li>
								<a id="home"
								 class="nav flat-box" href="/">
									<i class='fas fa-home fa-fw'></i>&nbsp;主页
								</a>
							</li>
      			
  						<li>
								<a id="archives"
								 class="nav flat-box" href="/archives/">
									<i class='fas fa-archive fa-fw'></i>&nbsp;归档
								</a>
							</li>
      			
  						<li>
T
TRHX 已提交
149 150
								<a id="Message Board"
								 class="nav flat-box" href="/Message Board/">
T
TRHX 已提交
151 152 153 154 155 156
									<i class='fas fa-users fa-fw'></i>&nbsp;朋友
								</a>
							</li>
      			
  						<li>
								<a id="atom.xml"
T
TRHX 已提交
157
								 class="nav flat-box" href="/atom.xml">
T
TRHX 已提交
158 159 160 161 162 163 164 165 166 167 168
									<i class='fas fa-rss fa-fw'></i>&nbsp;RSS
								</a>
							</li>
      			
  						<li>
								<a id="https:blog.csdn.netqq_36759224"
								 class="nav flat-box" href="https://blog.csdn.net/qq_36759224/">
									<i class='fab fa-cuttlefish fa-fw'></i>&nbsp;CSDN
								</a>
							</li>
      			
T
TRHX 已提交
169 170 171 172 173 174 175
  						<li>
								<a id="about"
								 class="nav flat-box" href="/about/">
									<i class='fas fa-user-tie fa-fw'></i>&nbsp;关于
								</a>
							</li>
      			
T
TRHX 已提交
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
      		
				</ul>
			</div>

			
				<div class="m_search">
					<form name="searchform" class="form u-search-form">
						<input type="text" class="input u-search-input" placeholder="搜索" />
						<span class="icon"><i class="fas fa-search fa-fw"></i></span>
					</form>
				</div>
			
			<ul class='switcher h-list'>
				
					<li class='s-search'><a class="fas fa-search fa-fw" href='javascript:void(0)'></a></li>
				
				<li class='s-menu'><a class="fas fa-bars fa-fw" href='javascript:void(0)'></a></li>
			</ul>
		</div>

		<div class='nav-sub container container--flex'>
			<a class="logo flat-box"></a>
			<ul class='switcher h-list'>
				<li class='s-comment'><a class="flat-btn fas fa-comments fa-fw" href='javascript:void(0)'></a></li>
				<li class='s-toc'><a class="flat-btn fas fa-list fa-fw" href='javascript:void(0)'></a></li>
			</ul>
		</div>
	</div>
</header>
	<aside class="menu-phone">
    <header>
		<nav class="menu">
      <ul>
          
              
                  <li>
										<a id="home" class="nav flat-box" href="/">
											<i class='fas fa-home fa-fw'></i>&nbsp;主页
										</a>
                  </li>
              
                  <li>
										<a id="archives" class="nav flat-box" href="/archives/">
											<i class='fas fa-archive fa-fw'></i>&nbsp;归档
										</a>
                  </li>
              
                  <li>
T
TRHX 已提交
224
										<a id="Message Board" class="nav flat-box" href="/Message Board/">
T
TRHX 已提交
225 226 227 228 229
											<i class='fas fa-users fa-fw'></i>&nbsp;朋友
										</a>
                  </li>
              
                  <li>
T
TRHX 已提交
230
										<a id="atom.xml" class="nav flat-box" href="/atom.xml">
T
TRHX 已提交
231 232 233 234 235 236 237 238 239 240
											<i class='fas fa-rss fa-fw'></i>&nbsp;RSS
										</a>
                  </li>
              
                  <li>
										<a id="https:blog.csdn.netqq_36759224" class="nav flat-box" href="https://blog.csdn.net/qq_36759224/">
											<i class='fab fa-cuttlefish fa-fw'></i>&nbsp;CSDN
										</a>
                  </li>
              
T
TRHX 已提交
241 242 243 244 245 246
                  <li>
										<a id="about" class="nav flat-box" href="/about/">
											<i class='fas fa-user-tie fa-fw'></i>&nbsp;关于
										</a>
                  </li>
              
T
TRHX 已提交
247 248 249
       
      </ul>
		</nav>
T
TRHX 已提交
250
    </header>
T
TRHX 已提交
251
	</aside>
T
TRHX 已提交
252

T
TRHX 已提交
253 254 255 256
    <script>setLoadingBarProgress(40);</script>
    <div class="l_body">
    <div class='container clearfix'>
        <div class='l_main'>
T
TRHX 已提交
257
            
T
TRHX 已提交
258 259

<section class="post-list">
T
TRHX 已提交
260 261
    
    
T
TRHX 已提交
262
      
T
TRHX 已提交
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326
        <div class='post-wrapper'>
          <article class="post reveal ">
    
<section class='meta'>
  
  <div class="meta" id="header-meta">
    
      <h2 class="title">
          <a href="/2018/09/15/Python3 自学笔记 C02/">
              
                  Python3 自学笔记 C02
              
          </a>
      </h2>
    

    
      <time class="metatag time">
        <i class="fas fa-calendar-alt fa-fw" aria-hidden="true"></i>&nbsp;2018-09-15
      </time>
    

    
      
    
    <div class='metatag cats'>
        <i class="fas fa-folder-open fa-fw" aria-hidden="true"></i>&nbsp;<a class="categories" href="/categories/Python/">Python</a>
    </div>


    

    

    

  </div>
</section>

    <section class="article typo">
        Python3 【列表】
        
            <div class="readmore">
                <a href="/2018/09/15/Python3 自学笔记 C02/" class="flat-box">
                    <i class="fas fa-book-open fa-fw" aria-hidden="true"></i>
                    阅读全文
                </a>
            </div>
        

        
            <div class="full-width auto-padding tags">
                
                    <a href="/tags/列表/"><i class="fas fa-tag fa-fw"></i>列表</a>
                
            </div>
        
    </section>
</article>

        </div>
      
    
      
T
TRHX 已提交
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392
        <div class='post-wrapper'>
          <article class="post reveal ">
    
<section class='meta'>
  
  <div class="meta" id="header-meta">
    
      <h2 class="title">
          <a href="/2018/09/10/Python3 自学笔记 C01/">
              
                  Python3 自学笔记 C01
              
          </a>
      </h2>
    

    
      <time class="metatag time">
        <i class="fas fa-calendar-alt fa-fw" aria-hidden="true"></i>&nbsp;2018-09-10
      </time>
    

    
      
    
    <div class='metatag cats'>
        <i class="fas fa-folder-open fa-fw" aria-hidden="true"></i>&nbsp;<a class="categories" href="/categories/Python/">Python</a>
    </div>


    

    

    

  </div>
</section>

    <section class="article typo">
        Python3 【变量和简单数据类型】
        
            <div class="readmore">
                <a href="/2018/09/10/Python3 自学笔记 C01/" class="flat-box">
                    <i class="fas fa-book-open fa-fw" aria-hidden="true"></i>
                    阅读全文
                </a>
            </div>
        

        
            <div class="full-width auto-padding tags">
                
                    <a href="/tags/数据类型/"><i class="fas fa-tag fa-fw"></i>数据类型</a>
                
                    <a href="/tags/变量/"><i class="fas fa-tag fa-fw"></i>变量</a>
                
            </div>
        
    </section>
</article>

        </div>
      
    
      
T
TRHX 已提交
393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458
        <div class='post-wrapper'>
          <article class="post reveal ">
    
<section class='meta'>
  
  <div class="meta" id="header-meta">
    
      <h2 class="title">
          <a href="/2018/09/09/VMware Pro 14 安装 Ubuntu 18.04 详细教程/">
              
                  VMware Pro 14 安装 Ubuntu 18.04 详细教程
              
          </a>
      </h2>
    

    
      <time class="metatag time">
        <i class="fas fa-calendar-alt fa-fw" aria-hidden="true"></i>&nbsp;2018-09-09
      </time>
    

    
      
    
    <div class='metatag cats'>
        <i class="fas fa-folder-open fa-fw" aria-hidden="true"></i>&nbsp;<a class="categories" href="/categories/实用教程/">实用教程</a>
    </div>


    

    

    

  </div>
</section>

    <section class="article typo">
        VMware Pro 14 安装 Ubuntu 18.04 的详细教程以及一些在安装过程中可能遇到的问题
        
            <div class="readmore">
                <a href="/2018/09/09/VMware Pro 14 安装 Ubuntu 18.04 详细教程/" class="flat-box">
                    <i class="fas fa-book-open fa-fw" aria-hidden="true"></i>
                    阅读全文
                </a>
            </div>
        

        
            <div class="full-width auto-padding tags">
                
                    <a href="/tags/VMware/"><i class="fas fa-tag fa-fw"></i>VMware</a>
                
                    <a href="/tags/Ubuntu/"><i class="fas fa-tag fa-fw"></i>Ubuntu</a>
                
            </div>
        
    </section>
</article>

        </div>
      
    
      
T
TRHX 已提交
459 460
        <div class='post-wrapper'>
          <article class="post reveal ">
T
TRHX 已提交
461
    
T
TRHX 已提交
462
<section class='meta'>
T
TRHX 已提交
463
  
T
TRHX 已提交
464 465 466 467 468 469 470 471 472 473
  <div class="meta" id="header-meta">
    
      <h2 class="title">
          <a href="/2018/08/29/主流 Markdown 编辑器推荐/">
              
                  主流 Markdown 编辑器推荐
              
          </a>
      </h2>
    
T
TRHX 已提交
474 475

    
T
TRHX 已提交
476 477 478 479 480
      <time class="metatag time">
        <i class="fas fa-calendar-alt fa-fw" aria-hidden="true"></i>&nbsp;2018-08-29
      </time>
    

T
TRHX 已提交
481 482
    
      
T
TRHX 已提交
483 484 485
    
    <div class='metatag cats'>
        <i class="fas fa-folder-open fa-fw" aria-hidden="true"></i>&nbsp;<a class="categories" href="/categories/实用教程/">实用教程</a>
T
TRHX 已提交
486 487 488
    </div>


T
TRHX 已提交
489 490 491
    

    
T
TRHX 已提交
492

T
TRHX 已提交
493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511
    

  </div>
</section>

    <section class="article typo">
        工欲善其事,必先利其器,选择一个合适自己的 Markdown 编辑器至关重要
        
            <div class="readmore">
                <a href="/2018/08/29/主流 Markdown 编辑器推荐/" class="flat-box">
                    <i class="fas fa-book-open fa-fw" aria-hidden="true"></i>
                    阅读全文
                </a>
            </div>
        

        
            <div class="full-width auto-padding tags">
                
T
TRHX 已提交
512
                    <a href="/tags/Markdown/"><i class="fas fa-tag fa-fw"></i>Markdown</a>
T
TRHX 已提交
513
                
T
TRHX 已提交
514
                    <a href="/tags/编辑器/"><i class="fas fa-tag fa-fw"></i>编辑器</a>
T
TRHX 已提交
515 516 517 518 519 520 521
                
            </div>
        
    </section>
</article>

        </div>
T
TRHX 已提交
522
      
T
TRHX 已提交
523
    
T
TRHX 已提交
524
      
T
TRHX 已提交
525 526
        <div class='post-wrapper'>
          <article class="post reveal ">
T
TRHX 已提交
527
    
T
TRHX 已提交
528
<section class='meta'>
T
TRHX 已提交
529
  
T
TRHX 已提交
530 531 532 533 534 535 536 537 538 539
  <div class="meta" id="header-meta">
    
      <h2 class="title">
          <a href="/2018/08/27/Hexo 博客主题个性化/">
              
                  Hexo 博客主题个性化
              
          </a>
      </h2>
    
T
TRHX 已提交
540

T
TRHX 已提交
541 542 543 544 545
    
      <time class="metatag time">
        <i class="fas fa-calendar-alt fa-fw" aria-hidden="true"></i>&nbsp;2018-08-27
      </time>
    
T
TRHX 已提交
546

T
TRHX 已提交
547 548 549 550 551 552
    
      
    
    <div class='metatag cats'>
        <i class="fas fa-folder-open fa-fw" aria-hidden="true"></i>&nbsp;<a class="categories" href="/categories/实用教程/">实用教程</a>
    </div>
T
TRHX 已提交
553 554


T
TRHX 已提交
555
    
T
TRHX 已提交
556

T
TRHX 已提交
557
    
T
TRHX 已提交
558

T
TRHX 已提交
559
    
T
TRHX 已提交
560

T
TRHX 已提交
561 562
  </div>
</section>
T
TRHX 已提交
563

T
TRHX 已提交
564 565 566 567 568 569 570 571 572 573
    <section class="article typo">
        Hexo 博客主题的美化,添加一些实用功能,定制你的专属博客【持续更新】
        
            <div class="readmore">
                <a href="/2018/08/27/Hexo 博客主题个性化/" class="flat-box">
                    <i class="fas fa-book-open fa-fw" aria-hidden="true"></i>
                    阅读全文
                </a>
            </div>
        
T
TRHX 已提交
574

T
TRHX 已提交
575 576 577
        
            <div class="full-width auto-padding tags">
                
T
TRHX 已提交
578 579
                    <a href="/tags/主题个性化/"><i class="fas fa-tag fa-fw"></i>主题个性化</a>
                
T
TRHX 已提交
580 581
                    <a href="/tags/Hexo/"><i class="fas fa-tag fa-fw"></i>Hexo</a>
                
T
TRHX 已提交
582 583 584 585 586 587 588 589 590 591 592 593 594
            </div>
        
    </section>
</article>

        </div>
      
    
      
        <div class='post-wrapper'>
          <article class="post reveal ">
    
<section class='meta'>
T
TRHX 已提交
595
  
T
TRHX 已提交
596
  <div class="meta" id="header-meta">
T
TRHX 已提交
597
    
T
TRHX 已提交
598 599 600 601 602 603 604
      <h2 class="title">
          <a href="/2018/08/25/Markdown 语法&技巧总结/">
              
                  Markdown 语法&amp;技巧总结
              
          </a>
      </h2>
T
TRHX 已提交
605
    
T
TRHX 已提交
606 607 608 609 610

    
      <time class="metatag time">
        <i class="fas fa-calendar-alt fa-fw" aria-hidden="true"></i>&nbsp;2018-08-25
      </time>
T
TRHX 已提交
611 612 613
    

    
T
TRHX 已提交
614
      
T
TRHX 已提交
615
    
T
TRHX 已提交
616 617
    <div class='metatag cats'>
        <i class="fas fa-folder-open fa-fw" aria-hidden="true"></i>&nbsp;<a class="categories" href="/categories/实用教程/">实用教程</a>
T
TRHX 已提交
618 619 620
    </div>


T
TRHX 已提交
621 622 623 624 625 626 627 628
    

    

    

  </div>
</section>
T
TRHX 已提交
629

T
TRHX 已提交
630 631 632 633 634 635 636 637 638 639 640 641 642 643
    <section class="article typo">
        在写博客的时候遇到的 Markdown 各种方法技巧或者语法记录下来,方便查阅【持续更新】
        
            <div class="readmore">
                <a href="/2018/08/25/Markdown 语法&技巧总结/" class="flat-box">
                    <i class="fas fa-book-open fa-fw" aria-hidden="true"></i>
                    阅读全文
                </a>
            </div>
        

        
            <div class="full-width auto-padding tags">
                
T
TRHX 已提交
644
                    <a href="/tags/Markdown/"><i class="fas fa-tag fa-fw"></i>Markdown</a>
T
TRHX 已提交
645
                
T
TRHX 已提交
646
                    <a href="/tags/技巧/"><i class="fas fa-tag fa-fw"></i>技巧</a>
T
TRHX 已提交
647 648 649 650 651 652 653
                
            </div>
        
    </section>
</article>

        </div>
T
TRHX 已提交
654
      
T
TRHX 已提交
655
    
T
TRHX 已提交
656
      
T
TRHX 已提交
657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737
        <div class='post-wrapper'>
          <article class="post reveal ">
    
<section class='meta'>
  
    
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/aplayer@1.7.0/dist/APlayer.min.css">
  <div class="aplayer"
    data-theme=""
    data-mini=true 
    
    data-mode="circulation"
    data-server="netease"
    data-type="song"
    data-id="534066497"
    data-volume="0.7">
  </div>
  <script src="https://cdn.jsdelivr.net/npm/aplayer@1.7.0/dist/APlayer.min.js"></script>
  <script src="https://cdn.jsdelivr.net/npm/meting@1.1.0/dist/Meting.min.js"></script>


  
  <div class="meta" id="header-meta">
    
      <h2 class="title">
          <a href="/2018/08/15/如何使用Github Pages和Hexo搭建自己独立博客/">
              
                  使用 Github Pages 和 Hexo 搭建自己的独立博客
              
          </a>
      </h2>
    

    
      <time class="metatag time">
        <i class="fas fa-calendar-alt fa-fw" aria-hidden="true"></i>&nbsp;2018-08-15
      </time>
    

    
      
    
    <div class='metatag cats'>
        <i class="fas fa-folder-open fa-fw" aria-hidden="true"></i>&nbsp;<a class="categories" href="/categories/实用教程/">实用教程</a>
    </div>


    

    

    

  </div>
</section>

    <section class="article typo">
        <p><img src="https://i.imgur.com/ShF70Zt.jpg" alt=""><br>使用 Github Pages 和 Hexo 搭建属于自己独立博客</p>
        
            <div class="readmore">
                <a href="/2018/08/15/如何使用Github Pages和Hexo搭建自己独立博客/" class="flat-box">
                    <i class="fas fa-book-open fa-fw" aria-hidden="true"></i>
                    阅读全文
                </a>
            </div>
        

        
            <div class="full-width auto-padding tags">
                
                    <a href="/tags/Hexo/"><i class="fas fa-tag fa-fw"></i>Hexo</a>
                
                    <a href="/tags/Github-Pages/"><i class="fas fa-tag fa-fw"></i>Github Pages</a>
                
            </div>
        
    </section>
</article>

        </div>
      
T
TRHX 已提交
738 739 740 741 742 743
    
      
        <div class='post-wrapper'>
          <article class="post reveal ">
    
<section class='meta'>
T
TRHX 已提交
744
  
T
TRHX 已提交
745
  <div class="meta" id="header-meta">
T
TRHX 已提交
746
    
T
TRHX 已提交
747 748 749 750 751 752 753
      <h2 class="title">
          <a href="/2018/08/10/Hello World/">
              
                  Hello World!
              
          </a>
      </h2>
T
TRHX 已提交
754
    
T
TRHX 已提交
755 756 757 758 759

    
      <time class="metatag time">
        <i class="fas fa-calendar-alt fa-fw" aria-hidden="true"></i>&nbsp;2018-08-10
      </time>
T
TRHX 已提交
760 761 762
    

    
T
TRHX 已提交
763
      
T
TRHX 已提交
764
    
T
TRHX 已提交
765
    <div class='metatag cats'>
T
TRHX 已提交
766
        <i class="fas fa-folder-open fa-fw" aria-hidden="true"></i>&nbsp;<a class="categories" href="/categories/BLOG/">BLOG</a>
T
TRHX 已提交
767 768 769
    </div>


T
TRHX 已提交
770 771 772
    

    
T
TRHX 已提交
773 774

    
T
TRHX 已提交
775

T
TRHX 已提交
776
  </div>
T
TRHX 已提交
777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792
</section>

    <section class="article typo">
        Hello World! Never forget why you started, and your mission can be accomplished!
        
            <div class="readmore">
                <a href="/2018/08/10/Hello World/" class="flat-box">
                    <i class="fas fa-book-open fa-fw" aria-hidden="true"></i>
                    阅读全文
                </a>
            </div>
        

        
            <div class="full-width auto-padding tags">
                
T
TRHX 已提交
793
                    <a href="/tags/BLOG/"><i class="fas fa-tag fa-fw"></i>BLOG</a>
T
TRHX 已提交
794 795 796 797
                
            </div>
        
    </section>
T
TRHX 已提交
798 799
</article>

T
TRHX 已提交
800 801 802 803 804
        </div>
      
    
</section>

T
TRHX 已提交
805

T
TRHX 已提交
806 807 808 809 810 811 812 813 814 815 816 817 818 819
    <br>
    <div class="prev-next">
        <div class="prev-next">
            
                <a class="prev" rel="prev" href="/">
                    <section class="post prev" >
                        <i class="fas fa-chevron-left" aria-hidden="true"></i>&nbsp;上一页&nbsp;
                    </section>
                </a>
            
            <p class="current">
                2 / 2
            </p>
            
T
TRHX 已提交
820

T
TRHX 已提交
821 822
        </div>
    </div>
T
TRHX 已提交
823 824 825



T
TRHX 已提交
826
<!-- 根据主题中的设置决定是否在archive中针对摘要部分的MathJax公式加载mathjax.js文件 -->
T
TRHX 已提交
827 828 829



T
TRHX 已提交
830 831 832 833 834


        </div>
        <aside class='l_side'>
            
T
TRHX 已提交
835
  
T
TRHX 已提交
836 837
  
    
T
TRHX 已提交
838 839 840 841 842 843
      
      
        <section class='author'>
  <div class='content material'>
    
      <div class='avatar'>
T
TRHX 已提交
844
        <img class='avatar' src='https://trhx.top/images/trhx.png'/>
T
TRHX 已提交
845
      </div>
T
TRHX 已提交
846 847
    
    
T
TRHX 已提交
848 849
      <div class='text'>
        
T
TRHX 已提交
850 851 852 853 854
          <h2>TRHX'S BLOG</h2>
        
        
          <p>求知若饥 虚心若愚</p>

T
TRHX 已提交
855 856
        
        
T
TRHX 已提交
857
      </div>
T
TRHX 已提交
858
    
T
TRHX 已提交
859 860 861
    
      <div class="social-wrapper">
        
T
TRHX 已提交
862
          
T
TRHX 已提交
863
            <a href="https://github.com/TRHX" class="social flat-btn" target="_blank" rel="external"><i class="social fab fa-github" aria-hidden="true"></i></a>
T
TRHX 已提交
864
          
T
TRHX 已提交
865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884
        
          
            <a href="https://www.zhihu.com/people/tan-70-56/activities" class="social flat-btn" target="_blank" rel="external"><i class="social fab fa-zhihu" aria-hidden="true"></i></a>
          
        
          
            <a href="mailto:&#116;&#114;&#104;&#120;&#64;&#102;&#111;&#120;&#109;&#97;&#105;&#108;&#46;&#99;&#111;&#109;" class="social flat-btn" target="_blank" rel="external"><i class="social fas fa-envelope" aria-hidden="true"></i></a>
          
        
          
            <a href="http://wpa.qq.com/msgrd?v=3&uin=2273902448&site=qq&menu=yes" class="social flat-btn" target="_blank" rel="external"><i class="social fab fa-qq" aria-hidden="true"></i></a>
          
        
          
            <a href="http://weibo.com/TRHX1" class="social flat-btn" target="_blank" rel="external"><i class="social fab fa-weibo" aria-hidden="true"></i></a>
          
        
      </div>
    
  </div>
T
TRHX 已提交
885
  <a href="https://blog.csdn.net/qq_36759224"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://trhx.top/images/Follow_me_on_CSDN.png" alt="Follow me on CSDN"></a>
T
TRHX 已提交
886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928

  <div id="binft" align="center"></div>
  <script>
    var binft = function (r) {
      function t() {
        return b[Math.floor(Math.random() * b.length)]
      }  
      function e() {
        return String.fromCharCode(94 * Math.random() + 33)
      }
      function n(r) {
        for (var n = document.createDocumentFragment(), i = 0; r > i; i++) {
          var l = document.createElement("span");
          l.textContent = e(), l.style.color = t(), n.appendChild(l)
        }
        return n
      }
      function i() {
        var t = o[c.skillI];
        c.step ? c.step-- : (c.step = g, c.prefixP < l.length ? (c.prefixP >= 0 && (c.text += l[c.prefixP]), c.prefixP++) : "forward" === c.direction ? c.skillP < t.length ? (c.text += t[c.skillP], c.skillP++) : c.delay ? c.delay-- : (c.direction = "backward", c.delay = a) : c.skillP > 0 ? (c.text = c.text.slice(0, -1), c.skillP--) : (c.skillI = (c.skillI + 1) % o.length, c.direction = "forward")), r.textContent = c.text, r.appendChild(n(c.prefixP < l.length ? Math.min(s, s + c.prefixP) : Math.min(s, t.length - c.skillP))), setTimeout(i, d)
      }
      var l = "",
      o = ["青青陵上柏,磊磊涧中石。", "人生天地间,忽如远行客。","斗酒相娱乐,聊厚不为薄。", "驱车策驽马,游戏宛与洛。","洛中何郁郁,冠带自相索。","长衢罗夹巷,王侯多第宅。","两宫遥相望,双阙百余尺。","极宴娱心意,戚戚何所迫?"].map(function (r) {
      return r + ""
      }),
      a = 2,
      g = 1,
      s = 5,
      d = 75,
      b = ["rgb(110,64,170)", "rgb(150,61,179)", "rgb(191,60,175)", "rgb(228,65,157)", "rgb(254,75,131)", "rgb(255,94,99)", "rgb(255,120,71)", "rgb(251,150,51)", "rgb(226,183,47)", "rgb(198,214,60)", "rgb(175,240,91)", "rgb(127,246,88)", "rgb(82,246,103)", "rgb(48,239,130)", "rgb(29,223,163)", "rgb(26,199,194)", "rgb(35,171,216)", "rgb(54,140,225)", "rgb(76,110,219)", "rgb(96,84,200)"],
      c = {
        text: "",
        prefixP: -s,
        skillI: 0,
        skillP: 0,
        direction: "forward",
        delay: a,
        step: g
      };
      i()
      };
      binft(document.getElementById('binft'));
  </script>
T
TRHX 已提交
929 930
</section>

T
TRHX 已提交
931 932
      
    
T
TRHX 已提交
933 934
  
    
T
TRHX 已提交
935 936
      
      
T
TRHX 已提交
937 938 939 940 941 942 943 944
        <section class='plain'>
  
<header class='material'>
  <div><i class="fas fa-edit fa-fw" aria-hidden="true"></i>&nbsp;&nbsp;域名转让</div>
  
</header>

  <div class='content material'>
T
TRHX 已提交
945
    <p>以下闲置域名低价转让,音译我爱BUG,价格非常美丽,给钱就扔,欢迎骚扰:<br><center>52bug.club<br>52bug.xyz<br>52bug.top</center></p>
T
TRHX 已提交
946 947 948 949 950 951 952 953 954 955

  </div>
</section>

      
    
  
    
      
      
T
TRHX 已提交
956 957 958 959 960 961 962 963 964 965 966 967 968 969
        <section class='plain'>
  
<header class='material'>
  <div><i class="fas fa-edit fa-fw" aria-hidden="true"></i>&nbsp;&nbsp;今日诗词</div>
  
    <a class="rightBtn rotate90" target="_blank"
    rel="external nofollow noopener noreferrer"
    href="https://www.jinrishici.com/"
    title="https://www.jinrishici.com/">
    <i class="far fa-paper-plane fa-fw"></i></a>
  
</header>

  <div class='content material'>
T
TRHX 已提交
970
    <p><img src="https://v2.jinrishici.com/one.svg" alt="今日诗词"></p>
T
TRHX 已提交
971 972 973 974 975 976 977 978 979 980

  </div>
</section>

      
    
  
    
      
      
T
TRHX 已提交
981 982 983 984 985
        <section class='plain'>
  
<header class='material'>
  <div><i class="fas fa-bullhorn fa-fw" aria-hidden="true"></i>&nbsp;&nbsp;注意啦~</div>
  
T
TRHX 已提交
986
    <a class="rightBtn rotate90" target="_blank"
T
TRHX 已提交
987 988 989 990 991 992
    rel="external nofollow noopener noreferrer"
    href="https://xaoxuu.com/wiki/material-x/"
    title="https://xaoxuu.com/wiki/material-x/">
    <i class="fas fa-question-circle fa-fw"></i></a>
  
</header>
T
TRHX 已提交
993

T
TRHX 已提交
994
  <div class='content material'>
T
TRHX 已提交
995
    <p>本站使用 <a href="https://xaoxuu.com/wiki/material-x/">Material X</a> 作为主题,喜欢这个主题的朋友可以阅读文档进行安装哦,超喜欢的话还可以安利给身边的朋友哦~<br><br><font color=#FF0000>Tip:电脑端访问本站效果更佳!</font></p>
T
TRHX 已提交
996

T
TRHX 已提交
997 998
  </div>
</section>
T
TRHX 已提交
999

T
TRHX 已提交
1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012
      
    
  
    
      
      
        
  <section class='category'>
    
<header class='material'>
  <div><i class="fas fa-folder-open fa-fw" aria-hidden="true"></i>&nbsp;&nbsp;所有分类</div>
  
</header>
T
TRHX 已提交
1013

T
TRHX 已提交
1014 1015 1016
    <div class='content material'>
      <ul class="entry">
        
T
TRHX 已提交
1017
          <li><a class="flat-box" title="/categories/BLOG/" href="/categories/BLOG/"><div class='name'>BLOG</div><div class='badge'>(2)</div></a></li>
T
TRHX 已提交
1018
        
T
TRHX 已提交
1019 1020
          <li><a class="flat-box" title="/categories/CDN/" href="/categories/CDN/"><div class='name'>CDN</div><div class='badge'>(1)</div></a></li>
        
T
TRHX 已提交
1021 1022
          <li><a class="flat-box" title="/categories/Python/" href="/categories/Python/"><div class='name'>Python</div><div class='badge'>(9)</div></a></li>
        
T
TRHX 已提交
1023
          <li><a class="flat-box" title="/categories/实用教程/" href="/categories/实用教程/"><div class='name'>实用教程</div><div class='badge'>(6)</div></a></li>
T
TRHX 已提交
1024 1025 1026 1027
        
      </ul>
    </div>
  </section>
T
TRHX 已提交
1028 1029


T
TRHX 已提交
1030 1031
      
    
T
TRHX 已提交
1032
  
T
TRHX 已提交
1033 1034 1035 1036 1037 1038 1039 1040
    
      
      
        
  <section class='tagcloud'>
    
<header class='material'>
  <div><i class="fas fa-fire fa-fw" aria-hidden="true"></i>&nbsp;&nbsp;热门标签</div>
T
TRHX 已提交
1041
  
T
TRHX 已提交
1042 1043 1044
</header>

    <div class='content material'>
T
TRHX 已提交
1045
      <a href="/tags/BLOG/" style="font-size: 19px; color: #777">BLOG</a> <a href="/tags/CDN/" style="font-size: 14px; color: #999">CDN</a> <a href="/tags/Github/" style="font-size: 14px; color: #999">Github</a> <a href="/tags/Github-Pages/" style="font-size: 14px; color: #999">Github Pages</a> <a href="/tags/Hexo/" style="font-size: 24px; color: #555">Hexo</a> <a href="/tags/Markdown/" style="font-size: 19px; color: #777">Markdown</a> <a href="/tags/Ubuntu/" style="font-size: 14px; color: #999">Ubuntu</a> <a href="/tags/VMware/" style="font-size: 14px; color: #999">VMware</a> <a href="/tags/if语句/" style="font-size: 14px; color: #999">if语句</a> <a href="/tags/input-函数/" style="font-size: 14px; color: #999">input()函数</a> <a href="/tags/jsDeliver/" style="font-size: 14px; color: #999">jsDeliver</a> <a href="/tags/while循环/" style="font-size: 14px; color: #999">while循环</a> <a href="/tags/主题个性化/" style="font-size: 14px; color: #999">主题个性化</a> <a href="/tags/函数/" style="font-size: 14px; color: #999">函数</a> <a href="/tags/列表/" style="font-size: 14px; color: #999">列表</a> <a href="/tags/变量/" style="font-size: 14px; color: #999">变量</a> <a href="/tags/字典/" style="font-size: 14px; color: #999">字典</a> <a href="/tags/异常/" style="font-size: 14px; color: #999">异常</a> <a href="/tags/技巧/" style="font-size: 14px; color: #999">技巧</a> <a href="/tags/操作列表/" style="font-size: 14px; color: #999">操作列表</a> <a href="/tags/数据类型/" style="font-size: 14px; color: #999">数据类型</a> <a href="/tags/文件/" style="font-size: 14px; color: #999">文件</a> <a href="/tags/模块/" style="font-size: 14px; color: #999">模块</a> <a href="/tags/类/" style="font-size: 14px; color: #999"></a> <a href="/tags/继承/" style="font-size: 14px; color: #999">继承</a> <a href="/tags/编辑器/" style="font-size: 14px; color: #999">编辑器</a>
T
TRHX 已提交
1046
    </div>
T
TRHX 已提交
1047 1048 1049 1050
  </section>


      
T
TRHX 已提交
1051
    
T
TRHX 已提交
1052
  
T
TRHX 已提交
1053
    
T
TRHX 已提交
1054 1055 1056
      
      
        <section class='list'>
T
TRHX 已提交
1057
  
T
TRHX 已提交
1058 1059
<header class='material'>
  <div><i class="fas fa-link fa-fw" aria-hidden="true"></i>&nbsp;&nbsp;特别链接</div>
T
TRHX 已提交
1060
  
T
TRHX 已提交
1061
</header>
T
TRHX 已提交
1062

T
TRHX 已提交
1063 1064
  <div class='content material'>
    <ul class="entry">
T
TRHX 已提交
1065
      
T
TRHX 已提交
1066 1067 1068 1069 1070 1071 1072 1073
        <li><a class="flat-box" title="http://space.bilibili.com/314463806?/" href="http://space.bilibili.com/314463806?/">
          <div class='name'>
            
              <i class="fas fa-film fa-fw" aria-hidden="true"></i>
            
            &nbsp;&nbsp;bilibili
          </div>
          
T
TRHX 已提交
1074
            <div class='badge'>(博主的主页)</div>
T
TRHX 已提交
1075 1076 1077
          
        </a></li>
      
T
TRHX 已提交
1078 1079 1080
        <li><a class="flat-box" title="https://xaoxuu.com/wiki/material-x/" href="https://xaoxuu.com/wiki/material-x/">
          <div class='name'>
            
T
TRHX 已提交
1081
              <i class="fas fa-cube fa-fw" aria-hidden="true"></i>
T
TRHX 已提交
1082
            
T
TRHX 已提交
1083
            &nbsp;&nbsp;Material X
T
TRHX 已提交
1084
          </div>
T
TRHX 已提交
1085
          
T
TRHX 已提交
1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099
            <div class='badge'>(Hexo博客主题)</div>
          
        </a></li>
      
        <li><a class="flat-box" title="https://hexo.io/zh-cn/" href="https://hexo.io/zh-cn/">
          <div class='name'>
            
              <i class="fas fa-blog fa-fw" aria-hidden="true"></i>
            
            &nbsp;&nbsp;Hexo
          </div>
          
            <div class='badge'>(Hexo官网)</div>
          
T
TRHX 已提交
1100
        </a></li>
T
TRHX 已提交
1101
      
T
TRHX 已提交
1102 1103 1104 1105
    </ul>
  </div>
</section>

T
TRHX 已提交
1106
      
T
TRHX 已提交
1107
    
T
TRHX 已提交
1108 1109
  
    
T
TRHX 已提交
1110 1111
      
      
T
TRHX 已提交
1112
        
T
TRHX 已提交
1113 1114


T
TRHX 已提交
1115 1116 1117 1118 1119
  <section class='music'>
    
<header class='material'>
  <div><i class="fas fa-compact-disc fa-fw" aria-hidden="true"></i>&nbsp;&nbsp;音乐</div>
  
T
TRHX 已提交
1120
    <a class="rightBtn rotate90" target="_blank"
T
TRHX 已提交
1121 1122 1123 1124 1125 1126
    rel="external nofollow noopener noreferrer"
    href="https://music.163.com/#/playlist?id=2415512873"
    title="https://music.163.com/#/playlist?id=2415512873">
    <i class="far fa-heart fa-fw"></i></a>
  
</header>
T
TRHX 已提交
1127

T
TRHX 已提交
1128
    <div class='content material'>
T
TRHX 已提交
1129
      
T
TRHX 已提交
1130 1131 1132 1133
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/aplayer@1.7.0/dist/APlayer.min.css">
  <div class="aplayer"
    data-theme="#1BCDFC"
    
T
TRHX 已提交
1134
    
T
TRHX 已提交
1135 1136 1137
    data-mode="circulation"
    data-server="netease"
    data-type="playlist"
T
TRHX 已提交
1138
    data-id="2625522030"
T
TRHX 已提交
1139
    data-volume="0.7">
T
TRHX 已提交
1140
  </div>
T
TRHX 已提交
1141 1142
  <script src="https://cdn.jsdelivr.net/npm/aplayer@1.7.0/dist/APlayer.min.js"></script>
  <script src="https://cdn.jsdelivr.net/npm/meting@1.1.0/dist/Meting.min.js"></script>
T
TRHX 已提交
1143 1144


T
TRHX 已提交
1145 1146
    </div>
  </section>
T
TRHX 已提交
1147 1148


T
TRHX 已提交
1149 1150 1151 1152 1153 1154 1155
      
    
  
    
      
      
        
T
TRHX 已提交
1156

T
TRHX 已提交
1157 1158 1159
      
    
  
T
TRHX 已提交
1160 1161


T
TRHX 已提交
1162 1163 1164 1165 1166 1167
        </aside>
        <script>setLoadingBarProgress(60);</script>
    </div>
    <a class="s-top fas fa-arrow-up fa-fw" href='javascript:void(0)'></a>
    </div>
    <footer id="footer" class="clearfix">
T
TRHX 已提交
1168
  
T
TRHX 已提交
1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191
    <div class="social-wrapper">
      
        
          <a href="https://github.com/TRHX" class="social fab fa-github flat-btn" target="_blank" rel="external"></a>
        
      
        
          <a href="https://www.zhihu.com/people/tan-70-56/activities" class="social fab fa-zhihu flat-btn" target="_blank" rel="external"></a>
        
      
        
          <a href="mailto:&amp;#116;&amp;#114;&amp;#104;&amp;#120;&amp;#64;&amp;#102;&amp;#111;&amp;#120;&amp;#109;&amp;#97;&amp;#105;&amp;#108;&amp;#46;&amp;#99;&amp;#111;&amp;#109;" class="social fas fa-envelope flat-btn" target="_blank" rel="external"></a>
        
      
        
          <a href="http://wpa.qq.com/msgrd?v=3&amp;uin=2273902448&amp;site=qq&amp;menu=yes" class="social fab fa-qq flat-btn" target="_blank" rel="external"></a>
        
      
        
          <a href="http://weibo.com/TRHX1" class="social fab fa-weibo flat-btn" target="_blank" rel="external"></a>
        
      
    </div>
T
TRHX 已提交
1192
  
T
TRHX 已提交
1193
  <br>
T
TRHX 已提交
1194

T
TRHX 已提交
1195 1196 1197 1198 1199 1200 1201 1202 1203 1204

  Copyright <i class="far fa-copyright"></i> 2018-2019
  <a href="http://trhx.top" target="_blank"> TRHX&#39;BLOG </a>
  <a href="http://www.miitbeian.gov.cn/" target="_blank">鄂ICP备19003281号-2</a>
  <script type="text/javascript" src="https://s23.cnzz.com/z_stat.php?id=1275909280&web_id=1275909280"></script><br>

  Powered by <a href="https://hexo.io/zh-cn/" target="_blank" class="codename">Hexo</a>
  • Theme <a href="https://xaoxuu.com/wiki/material-x/" target="_blank" class="codename">Material X</a> by <a href="https://xaoxuu.com/" target="_blank" class="codename">xaoxuu</a>&nbsp;
<i class="fab fa-creative-commons"></i> <a rel="license" href="https://creativecommons.org/licenses/by-nc-sa/4.0/deed.zh" title="本站点采用知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议进行许可" target="_blank">CC BY-NC-SA 4.0 International</a><br>

T
TRHX 已提交
1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224
    <!-- 网站运行时间 -->
    <span id="timeDate">正在载入...</span><span id="times"><span><i class="fa fa-spinner fa-spin"> </i></span></span>
    <script>
        var now = new Date(); 
        function createtime() { 
            var grt= new Date("08/10/2018 17:38:00");//建站时间
            now.setTime(now.getTime()+250); 
            days = (now - grt ) / 1000 / 60 / 60 / 24; dnum = Math.floor(days); 
            hours = (now - grt ) / 1000 / 60 / 60 - (24 * dnum); hnum = Math.floor(hours); 
            if(String(hnum).length ==1 ){hnum = "0" + hnum;} minutes = (now - grt ) / 1000 /60 - (24 * 60 * dnum) - (60 * hnum); 
            mnum = Math.floor(minutes); if(String(mnum).length ==1 ){mnum = "0" + mnum;} 
            seconds = (now - grt ) / 1000 - (24 * 60 * 60 * dnum) - (60 * 60 * hnum) - (60 * mnum); 
            snum = Math.round(seconds); if(String(snum).length ==1 ){snum = "0" + snum;} 
            document.getElementById("timeDate").innerHTML = "本站已勉强存活了 "
            document.getElementById("times").innerHTML = dnum +"" + hnum + " 小时 " + mnum + "" + snum + ""; 
            document.getElementById("times").style.color="#00ccff";
        }
        setInterval("createtime()",250);
    </script>
    <!--<i class="fa fa-user"></i>-->
T
TRHX 已提交
1225
    <span id="busuanzi_container_site_uv">UV:<span id="busuanzi_value_site_uv" style="color:#00ccff"></span></span>
T
TRHX 已提交
1226
    <!--<i class="fa fa-eye"></i>-->
T
TRHX 已提交
1227
    <span id="busuanzi_container_site_pv">PV:<span id="busuanzi_value_site_pv" style="color:#00ccff"></span></span>
T
TRHX 已提交
1228
    <!--<i class="fas fa-chart-area"></i>-->
T
TRHX 已提交
1229
    <span class="post-count">Word Count:<a style="color:#00ccff"> 38.5k</a></span>
T
TRHX 已提交
1230 1231
</footer>

T
TRHX 已提交
1232 1233
    <script>setLoadingBarProgress(80);</script>
    <script src="https://cdn.jsdelivr.net/npm/jquery@3.2.1/dist/jquery.min.js"></script>
T
TRHX 已提交
1234

T
TRHX 已提交
1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248
  <script>
    var GOOGLE_CUSTOM_SEARCH_API_KEY = "";
    var GOOGLE_CUSTOM_SEARCH_ENGINE_ID = "";
    var ALGOLIA_API_KEY = "";
    var ALGOLIA_APP_ID = "";
    var ALGOLIA_INDEX_NAME = "";
    var AZURE_SERVICE_NAME = "";
    var AZURE_INDEX_NAME = "";
    var AZURE_QUERY_KEY = "";
    var BAIDU_API_ID = "";
    var SEARCH_SERVICE = "hexo" || "hexo";
    var ROOT = "/"||"/";
    if(!ROOT.endsWith('/'))ROOT += '/';
  </script>
T
TRHX 已提交
1249 1250


T
TRHX 已提交
1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288
  
    <script src="https://cdn.jsdelivr.net/npm/scrollreveal@4.0.5/dist/scrollreveal.min.js"></script>
    <script type="text/javascript">
      $(function() {
        const $reveal = $('.reveal');
    		if ($reveal.length === 0) return;
    		const sr = ScrollReveal({ distance: 0 });
    		sr.reveal('.reveal');
      });
    </script>
  
  
    <script src="https://cdn.jsdelivr.net/npm/node-waves@0.7.6/dist/waves.min.js"></script>
    <script type="text/javascript">
      $(function() {
        Waves.attach('.flat-btn', ['waves-button']);
        Waves.attach('.float-btn', ['waves-button', 'waves-float']);
        Waves.attach('.float-btn-light', ['waves-button', 'waves-float', 'waves-light']);
        Waves.attach('.flat-box', ['waves-block']);
        Waves.attach('.float-box', ['waves-block', 'waves-float']);
        Waves.attach('.waves-image');
        Waves.init();
      });
    </script>
  
  
    <script async src="https://cdn.jsdelivr.net/gh/xaoxuu/cdn-busuanzi@2.3/js/busuanzi.pure.mini.js"></script>
  
  
    <!-- fastclick -->
    <script src="https://cdn.jsdelivr.net/npm/fastclick@1.0.6/lib/fastclick.min.js"></script>
    <script>
      document.addEventListener('DOMContentLoaded', function() {
        FastClick.attach(document.body)
      }, false)
    </script>
  
  
T
TRHX 已提交
1289

T
TRHX 已提交
1290

T
TRHX 已提交
1291 1292 1293
  
  
  
T
TRHX 已提交
1294 1295
    
  
T
TRHX 已提交
1296
  
T
TRHX 已提交
1297 1298
    <script src="/js/app.js"></script>
<script src="/js/search.js"></script>
T
TRHX 已提交
1299
  
T
TRHX 已提交
1300 1301 1302 1303




T
TRHX 已提交
1304 1305


T
TRHX 已提交
1306
    <script>setLoadingBarProgress(100);</script>
T
TRHX 已提交
1307
</body>
T
TRHX 已提交
1308
</html>
T
TRHX 已提交
1309

T
TRHX 已提交
1310
<!-- 单击显示文字 
T
TRHX 已提交
1311
<script type="text/javascript" src="/js/ClickShowText.js"></script>
T
TRHX 已提交
1312
-->
T
TRHX 已提交
1313

T
TRHX 已提交
1314
<!-- 浏览器搞笑标题 -->
T
TRHX 已提交
1315 1316
<script type="text/javascript" src="/js/FunnyTitle.js"></script>

T
TRHX 已提交
1317
<!-- 雪花特效 
T
TRHX 已提交
1318
<script type="text/javascript" src="/js/snow.js"></script>
T
TRHX 已提交
1319
-->
T
TRHX 已提交
1320

T
TRHX 已提交
1321
<!-- 网页内容复制提示 
T
TRHX 已提交
1322 1323 1324
<script type="text/javascript">
    document.body.oncopy=function(){alert("TRHX'S BLOG:复制成功!如需转载文章请注意声明原文出处,感谢您的支持o(∩_∩)o!");}
</script>
T
TRHX 已提交
1325
-->
T
TRHX 已提交
1326

T
TRHX 已提交
1327
<!-- 动态线条背景
T
TRHX 已提交
1328 1329 1330
<script type="text/javascript"
color="220,220,220" opacity='0.7' zIndex="-2" count="200" src="//cdn.bootcss.com/canvas-nest.js/1.0.0/canvas-nest.min.js">
</script>
T
TRHX 已提交
1331
-->
T
TRHX 已提交
1332 1333

<!-- 心知天气插件 -->
T
TRHX 已提交
1334
<!-- https://www.seniverse.com/widget/get 
T
TRHX 已提交
1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348
<script>(function(T,h,i,n,k,P,a,g,e){g=function(){P=h.createElement(i);a=h.getElementsByTagName(i)[0];P.src=k;P.charset="utf-8";P.async=1;a.parentNode.insertBefore(P,a)};T["ThinkPageWeatherWidgetObject"]=n;T[n]||(T[n]=function(){(T[n].q=T[n].q||[]).push(arguments)});T[n].l=+new Date();if(T.attachEvent){T.attachEvent("onload",g)}else{T.addEventListener("load",g,false)}}(window,document,"script","tpwidget","//widget.seniverse.com/widget/chameleon.js"))</script>
<script>tpwidget("init", {
    "flavor": "bubble",
    "location": "WX4FBXXFKE4F",
    "geolocation": "enabled",
    "position": "top-left",
    "margin": "0px 0px",
    "language": "zh-chs",
    "unit": "c",
    "theme": "chameleon",
    "uid": "U3A639EE85",
    "hash": "e6276cdeeaf5b49cabca7dee59b30862"
});
tpwidget("show");</script>
T
TRHX 已提交
1349 1350
-->

T
TRHX 已提交
1351
<!-- 鼠标点击烟花爆炸效果 -->
T
TRHX 已提交
1352 1353
<canvas class="fireworks" style="position: fixed;left: 0;top: 0;z-index: 1; pointer-events: none;" ></canvas> 
<script type="text/javascript" src="//cdn.bootcss.com/animejs/2.2.0/anime.min.js"></script> 
T
TRHX 已提交
1354
<script type="text/javascript" src="/js/fireworks.js"></script>