<?xml version="1.0" encoding="UTF-8" standalone="no"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" version="2.0">

<channel>
	<title>月光部落</title>
	<atom:link href="https://www.moonlol.com/feed" rel="self" type="application/rss+xml"/>
	<link>https://www.moonlol.com</link>
	<description>月亮下的碎碎唸唸</description>
	<lastBuildDate>Tue, 23 Jun 2026 13:38:01 +0000</lastBuildDate>
	<language>zh-TW</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>
	<itunes:explicit>no</itunes:explicit><copyright>Copyright © Moonlol.Com, All Rights Reserved.</copyright><itunes:image href="http://www.moonlol.com//mimages/a_moonlit.png"/><itunes:keywords>moon,月光,moonlol</itunes:keywords><itunes:summary>月光部落(Moonlol Blog)!誕生於2013年1月12日，開設博客是給個人，記下生活的點滴，生活的鎖碎事，寫下自己想說的話題，和一些很想寫的東西；隨心而發，隨想而寫，只要是認為值得記下的事，什麼亂七八糟的內容都會有一些。</itunes:summary><itunes:subtitle>月亮下的碎碎唸</itunes:subtitle><itunes:category text="Technology"><itunes:category text="Podcasting"/></itunes:category><itunes:author>Jack!</itunes:author><itunes:owner><itunes:email>hemu3q@gmail.com</itunes:email><itunes:name>Jack!</itunes:name></itunes:owner><item>
		<title>CSS或JS物件延遲消失並自動隱藏</title>
		<link>https://www.moonlol.com/js-css-delay-display-hide-9208.html</link>
					<comments>https://www.moonlol.com/js-css-delay-display-hide-9208.html#respond</comments>
		
		
		<pubDate>Tue, 23 Jun 2026 13:22:14 +0000</pubDate>
				<category><![CDATA[源碼分享]]></category>
		<category><![CDATA[JavaScript]]></category>
		<guid isPermaLink="false">https://www.moonlol.com/?p=9208</guid>

					<description><![CDATA[網友打開網站進入網頁時，彈出溫馨提醒內容的通知窗口，以用作提示、警示或展示內容，給來訪者閱讀，信息也將會在一定 [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>網友打開網站進入網頁時，彈出溫馨提醒內容的通知窗口，以用作提示、警示或展示內容，給來訪者閱讀，信息也將會在一定時間內自動消失，如: 3秒、5秒、10秒後，自動隱藏信息，也可以在 form 標籤，點擊提交按鈕 Submit 時，延遲截入內容，設定停留的時間長一些，這時出現動畫、影片或圖片特效，在一定的時間又會自動關閉。<span id="more-9208"></span></p>
<p><strong><span style="color: #ff0000;">01.</span></strong> CSS</p>
<p>我們可以使用 CSS 3 的 animation 屬性和 @keyframes 規則來實現，彈出通知提示。</p>
<p><strong>CSS 代碼:</strong></p>


<pre class="wp-block-code"><code>.moonlol{
width: 150px;
height: 100px;
opacity: 0;
background: yellow;
animation-name: fadenum;
animation-duration: 3s;
}

@keyframes fadenum{
0%{opacity:1;}
99%{opacity:1;}
100%{opacity:0;}
}</code></pre>


<p>animation-duration: <span style="color: #ff6600;"><strong>3s</strong></span> 代表 3秒 後信息自動隱藏。</p>
<p><strong>HTML 代碼:</strong></p>


<pre class="wp-block-code"><code>&lt;div class="moonlol"&gt;提示!通知!溫馨提醒內容&lt;/div&gt;</code></pre>


<p><span style="color: #ff0000;"><strong>02.</strong></span> JS</p>
<p>使用 JavaScript 點擊物件在自定時間顯示或隱藏信息。</p>
<p><strong>JS 代碼:</strong></p>


<pre class="wp-block-code"><code>function ShowNotice() {
  var popup = document.getElementById("moonlols");
  popup.style.display = "block";
  setTimeout(function() {
    CloseNotice();
  }, 5000);
}

function CloseNotice() {
  var popup = document.getElementById("moonlols");
  popup.style.display = "none";
}</code></pre>


<p>其中 <span style="color: #ff6600;"><strong>5000</strong> </span>是毫秒，即表示 5秒 後內容自動消失。</p>
<p><strong>HTML 代碼:</strong></p>


<pre class="wp-block-code"><code>&lt;button onClick="ShowNotice()"&gt;顯示信息 01&lt;/button&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;form id="form"&gt;
&lt;textarea&gt;&lt;/textarea&gt;
&lt;br /&gt;
&lt;input type="submit" value="提交 02" onClick="ShowNotice()" /&gt;
&lt;/form&gt;
&lt;div id="moonlols" style="display:none;"&gt;
圖片 / 影片 / 動畫 / 文字
&lt;/div&gt;</code></pre>


<p><strong>推薦:</strong></p>
<p>在 FORM 提交內容的第二個 PHP 頁面，建議加入以下延遲載入頁面代碼，這樣在第一個頁面，顯示的提示信息，就會得到有效的延長。</p>


<pre class="wp-block-code"><code>&lt;?php
sleep(5); // Submit After In 5 second
?&gt;</code></pre>


<p><span style="color: #ff0000;"><strong>03.</strong></span> JS</p>
<p>網站的重要通知，點擊按鈕後 2秒 關閉。</p>
<p><strong>JS 代碼:</strong></p>


<pre class="wp-block-code"><code>function SetNotice(){
	setTimeout(function(){
    document.getElementById("MyNotice").style.display="none";
	},2000);
}</code></pre>


<p><strong>HTML 代碼:</strong></p>


<pre class="wp-block-code"><code>&lt;div id="MyNotice">通知信息!!&lt;/div>
&lt;button onclick="SetNotice()">關閉通知&lt;/button></code></pre>


<p><span style="color: #800080;"><strong>技術文檔:</strong></span></p>
<p><strong>01.</strong> <a href="https://xulgr.com/code/css/1059" target="_blank" rel="noopener">CSS延遲hover消失時間</a></p>
<p><strong>02.</strong> <a href="https://medium.com/@AntheaLee/js-%E8%A8%88%E7%AE%97%E7%A7%92%E6%95%B8%E9%9A%B1%E8%97%8F%E7%89%A9%E4%BB%B6-f7b24f7e1a0" target="_blank" rel="noopener">計算秒數隱藏物件3秒後消失示意影片</a></p>
<p><strong>03.</strong> <a href="https://blog.51cto.com/u_16175494/8745956" target="_blank" rel="noopener">自動消失的彈窗</a></p>
<p><strong>04.</strong> <a href="https://www.qy.cn/jszx/detail/8355.html" target="_blank" rel="noopener">CSS怎麼讓動畫展現幾秒後消失</a></p>
<p><strong>演示地址：</strong><a href="https://www.ifreesite.com/allot" target="_blank" rel="noopener">ifreesite.com/allot</a></p>
<p><strong>代碼測試：</strong><a href="https://www.ifreesite.com/runcode.htm" target="_blank" rel="noopener">ifreesite.com/runcode.htm</a></p>
<div class="mo-post-and">相關文章：<br />01. <a href="https://www.moonlol.com/highslide-auto-open-popup-2639.html" target="_blank" rel="noopener">highslide自動彈出提示窗口一天只顯示一次</a></div>]]></content:encoded>
					
					<wfw:commentRss>https://www.moonlol.com/js-css-delay-display-hide-9208.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			<dc:creator>hemu3q@gmail.com (Jack!)</dc:creator></item>
		<item>
		<title>行山(登山)GPS Test教學</title>
		<link>https://www.moonlol.com/gps-test-edu-9188.html</link>
					<comments>https://www.moonlol.com/gps-test-edu-9188.html#respond</comments>
		
		
		<pubDate>Mon, 22 Jun 2026 08:33:19 +0000</pubDate>
				<category><![CDATA[網路資源]]></category>
		<category><![CDATA[Android安卓]]></category>
		<category><![CDATA[Apple IOS]]></category>
		<guid isPermaLink="false">https://www.moonlol.com/?p=9188</guid>

					<description><![CDATA[前天一個人獨自前往西貢行山(登山)， 由 水浪窩→昂平營地→終點西貢 / 馬鞍山，沿著麥理浩徑第四段 → 馬鞍 [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>前天一個人獨自前往西貢行山(登山)， 由 水浪窩→昂平營地→終點西貢 / 馬鞍山，沿著麥理浩徑第四段 → 馬鞍山郊遊徑 Shui Long Wo→Ma On Shan→Ngong Ping→Sai Kung（MacLehose Trail → Ma On Shan Country Trail）途徑彎曲山和大金鐘，在走到某一路段時，手機的GPS無訊號，路標出現飄移，迷失方向找不到原路，好像進入西貢結界一樣。<span id="more-9188"></span></p>
<p>慶幸手機一早已經安裝了 GPS Test APP 利用這個應用程式將行山 APP 的 GPS 恢復到最佳訊號狀態，經過此事件後，登山露營、上山下海或飛天遁地都必會安裝能夠增強 GPS 的應用程式，萬一沒有網絡訊號，也可以運用 GPS 的幫助，在地圖上找到自己的位置坐標及路況。</p>
<p><span style="color: #800080;"><strong>GPS Test APP：</strong></span><a href="https://www.moonlol.com/?p=7799" target="_blank" rel="noopener">下載&gt;&gt;</a></p>
<p><span style="color: #800000;"><strong>GPS Test 教學</strong></span></p>
<p><span style="color: #ff0000;"><strong>01.</strong></span> 當你行山時，使用 Google 地圖或登山 APP 導航，發覺 GPS 訊號弱或無訊號，坐標出現卡頓或嚴重飄移，指標老是跑掉隔離街。<span style="color: #008000;">圖片▼</span></p>
<p><img decoding="async" src="https://i.imgur.com/hSnoQx9.png" /></p>
<p><span style="color: #ff0000;"><strong>02.</strong></span> 這時請不要慌，先冷靜一下，打開已經安裝在手機的 GPS Test APP，等待一會，程式會自動將 GPS 的訊號增強 100 倍，並在右上方的「<strong>Accuracy</strong>」及中間的「<strong>In View &amp; Use</strong>」位置，出現<span style="color: #ff00ff;">數字</span>，代表程式已經幫助你找到附近的全球衛星定位系統的 GPS 訊號。<span style="color: #008000;">圖片▼</span></p>
<p><img decoding="async" src="https://i.imgur.com/0hPioEH.jpeg" /></p>
<p>如果 GPS 收訊良好且正常運作，則會顯示 <span style="color: #008000;">3D Fix</span> 定位，也有精確度數值，並且有速度顯示。以及在手機的 GPS 設定介面，在收訊良好且正常運作，裡面兩欄[航向]及[速度]會看到 GPS 數據。<span style="color: #008000;">圖片▼</span></p>
<p><img decoding="async" src="https://i.imgur.com/2S18zO4.jpeg" /></p>
<p><span style="color: #ff0000;"><strong>03.</strong> </span>現在重新打開行山 APP 或 Google Map 看到 GPS 訊號滿滿的了。<span style="color: #008000;">圖片▼</span></p>
<p><img decoding="async" src="https://i.imgur.com/vFpDClf.jpeg" /></p>
<p><span style="color: #800000;"><strong>彎曲山和昂平營地留影</strong></span></p>
<p>01. 在沙田乘搭299X巴士在水浪窩站下車，下車後往巴士方向走，前方有廁所及企嶺下燒烤場入口</p>
<p><img decoding="async" src="https://i.imgur.com/KtL9ay5.jpeg" /></p>
<p>02. 看到馬鞍山背影</p>
<p><img decoding="async" src="https://i.imgur.com/0ZFtUXI.jpeg" /></p>
<p>03. 甲蟲迎接本少的到來</p>
<p><img decoding="async" src="https://i.imgur.com/rm1HxZE.jpeg" /></p>
<p>04. 彎曲山</p>
<p><img decoding="async" src="https://i.imgur.com/4wqMfe5.jpeg" /></p>
<p><img decoding="async" src="https://i.imgur.com/1tA8dLI.jpeg" /></p>
<p>05. 昂平營地</p>
<p><img decoding="async" src="https://i.imgur.com/Zll3wkd.jpeg" /></p>
<p>06. 昂平原住民[牛先生]</p>
<p><img decoding="async" src="https://i.imgur.com/Phoe4zy.jpeg" /></p>
<p><div class="mo-post-and">相關文章：<br />
01. <a href="https://www.moonlol.com/gps-status-test-7799.html" target="_blank" rel="noopener">GPS定位不準亂跑掉飄移解決方法APP</a><br />
02. <a href="https://www.moonlol.com/%e9%a6%99%e6%b8%af-%e6%be%b3%e9%96%80-%e8%a1%8c%e5%b1%b1-%e7%99%bb%e5%b1%b1-app-9118.html" target="_blank" rel="noopener">香港及澳門行山(登山)APP推薦</a><br />
03. <a href="https://www.moonlol.com/calculator-walking-time-hiking-fraction-9007.html" target="_blank" rel="noopener">走路及跑步和行山(登山)公里分數計算器</a></div></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.moonlol.com/gps-test-edu-9188.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			<dc:creator>hemu3q@gmail.com (Jack!)</dc:creator></item>
		<item>
		<title>SoftEther VPN軟體下載及教學</title>
		<link>https://www.moonlol.com/softether-vpn-9173.html</link>
					<comments>https://www.moonlol.com/softether-vpn-9173.html#respond</comments>
		
		
		<pubDate>Tue, 16 Jun 2026 09:28:15 +0000</pubDate>
				<category><![CDATA[網絡寬頻]]></category>
		<category><![CDATA[Proxy代理Vpn]]></category>
		<guid isPermaLink="false">https://www.moonlol.com/?p=9173</guid>

					<description><![CDATA[SoftEther VPN 軟體是一個由日本程式設計師(登大遊)研發出來的一款免費開源的 VPN 神器，給網友 [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>SoftEther VPN 軟體是一個由日本程式設計師(登大遊)研發出來的一款免費開源的 VPN 神器，給網友輕鬆就能架設一個虛擬私人網路(VPN) 環境，軟體支持SSL、L2TP、IPSec以及 Microsoft SSTP 等協議，本機電腦不需要安裝額外的套件，用戶一鍵就能夠開啟 VPN 服務，是企業或個人使用者安全網路解決方案的理想選擇，憑藉先進的加密技術，SoftEther 可確保所有發送和接收的資料免受洩漏和欺詐，從而保障您的流量隱私和安全。<span id="more-9173"></span></p>
<p>SoftEther VPN 軟體介面語言支援英文、日語、簡體中文</p>
<p><strong>SoftEther VPN：</strong><a href="https://www.softether.org/" target="_blank" rel="noopener">官方網站</a></p>
<p><strong>SoftEther VPN：</strong><a href="https://www.softether.org/5-download" target="_blank" rel="noopener">下載地址</a></p>
<p><span style="color: #ff0000;"><strong>01.</strong></span> 安裝及打開軟體，請按「<strong>VPN Gate 公共 VPN 中繼服務器</strong>」欄位 <span style="color: #008000;">圖片▼</span></p>
<p><img decoding="async" src="https://i.imgur.com/CkkWvfS.jpeg" data-src="https://i.imgur.com/CkkWvfS.jpeg" data-ll-status="loaded" /></p>
<p><span style="color: #ff0000;"><strong>02.</strong></span> VPN 有提供日本、韓國、英國等伺服器，請自行選擇一個線路速度最快的，然後!點擊「<strong>連接到 VPN 服務器</strong>」按鈕 <span style="color: #008000;">圖片▼</span></p>
<p><img decoding="async" src="https://i.imgur.com/khp5GJj.jpeg" data-src="https://i.imgur.com/khp5GJj.jpeg" data-ll-status="loaded" /></p>
<p><span style="color: #ff0000;"><strong>03.</strong></span> 選擇 VPN 協議，建議選擇 TCP 協議，包含 HTTPS 保護 <span style="color: #008000;">圖片▼</span></p>
<p><img decoding="async" src="https://i.imgur.com/rz4LBhW.jpeg" data-src="https://i.imgur.com/rz4LBhW.jpeg" data-ll-status="loaded" /></p>
<p><span style="color: #ff0000;"><strong>04.</strong></span> 不使用 VPN 了，請記得右鍵按「<strong>VPN Gate Connection</strong>」下拉選單，選擇「<strong>斷開</strong>」<span style="color: #008000;">圖片▼</span></p>
<p><img decoding="async" src="https://i.imgur.com/qOyWvVz.jpeg" data-src="https://i.imgur.com/qOyWvVz.jpeg" data-ll-status="loaded" /></p>
<p><div class="mo-post-and">相關文章：<br />
01. <a href="https://www.moonlol.com/proxy%e4%bc%ba%e6%9c%8d%e5%99%a8%e4%bb%a3%e7%90%86%e4%bc%ba%e6%9c%8d%e5%99%a8%e8%a8%ad%e7%bd%ae-292.html" target="_blank" rel="noopener">Proxy伺服器(代理伺服器)的設定教學-IE﹑Firefox﹑Chrome﹑Safari﹑Opera</a><br />
02. <a href="https://www.moonlol.com/%e7%b6%b2%e9%a0%81%e7%89%88-%e5%85%8d%e8%b2%bb%e7%b7%9a%e4%b8%8aproxy%e4%bb%a3%e7%90%86%e4%bc%ba%e6%9c%8d%e5%99%a8%e8%b7%b3%e6%9d%bf-614.html" target="_blank" rel="noopener">網頁版-免費線上Proxy代理伺服器跳板</a><br />
03. <a href="https://www.moonlol.com/%e7%84%a1%e7%95%8c%e7%80%8f%e8%a6%bdultrasurf%e6%95%99%e5%ad%b8-842.html" target="_blank" rel="noopener">無界瀏覽Ultrasurf免費VPN代理詳細使用教學</a><br />
04. <a href="https://www.moonlol.com/%e5%85%8d%e8%b2%bb%e7%94%b3%e8%ab%8bvpn%e6%9c%8d%e5%8b%99-299.html" target="_blank" rel="noopener">免費申請VPN服務</a></div></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.moonlol.com/softether-vpn-9173.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			<dc:creator>hemu3q@gmail.com (Jack!)</dc:creator></item>
		<item>
		<title>電腦及手機IP地址查詢</title>
		<link>https://www.moonlol.com/pc-mobile-ip-9161.html</link>
					<comments>https://www.moonlol.com/pc-mobile-ip-9161.html#respond</comments>
		
		
		<pubDate>Tue, 16 Jun 2026 08:17:48 +0000</pubDate>
				<category><![CDATA[網絡寬頻]]></category>
		<category><![CDATA[網際網路]]></category>
		<guid isPermaLink="false">https://www.moonlol.com/?p=9161</guid>

					<description><![CDATA[電腦或手機使用Sim卡或WIFI上網，網路供應商都會分配一組IP地址給數碼裝置，用於暢遊網絡世界，若想查詢電腦 [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>電腦或手機使用Sim卡或WIFI上網，網路供應商都會分配一組IP地址給數碼裝置，用於暢遊網絡世界，若想查詢電腦或手機的IP地址，你可以嘗試查看系統得知，也可以使用軟體或網上IP查詢工具。<span id="more-9161"></span></p>
<p>這次本人介紹幾個常用來查詢本機IP的方法。</p>
<p>Ip Lookup: 是一款開源免費的IP查詢軟體，方便用戶不必打指令（ipconfig）、不必開啟「網路連線詳細資料」只要打開程式就可以馬上取得電腦內部IP，以及外部IP（Get external address）</p>
<p><strong>Ip Lookup:</strong> <a href="https://github.com/henrypp/iplookup" target="_blank" rel="noopener">官方網站</a></p>
<p><strong>Ip Lookup:</strong> <a href="https://github.com/henrypp/iplookup/releases" target="_blank" rel="noopener">軟體下載</a></p>
<p><img decoding="async" src="https://i.imgur.com/0tiX3vn.jpeg" /></p>
<p>軟體下載後，是不用安裝的，直接打開即可使用。軟件介面提供有英文English、繁體中文Chinese Traditional、簡體中文Chinese Simplified 等設定。</p>
<p><img decoding="async" src="https://i.imgur.com/XO8DFm4.jpeg" /></p>
<p>如果你不想使用軟體，可以使用網上的IP查詢工具，手機及電腦打開網頁即可使用。</p>
<p><strong>IP查詢：</strong><a href="https://www.ifreesite.com/ip" target="_blank" rel="noopener">文字版</a></p>
<p><strong>IP查詢：</strong><a href="https://www.ifreesite.com/ipaddress" target="_blank" rel="noopener">地圖版</a></p>
<p><div class="mo-post-and">相關文章：<br />
01. <a href="https://www.moonlol.com/ip%e5%8f%8a%e5%9f%9f%e5%90%8d%e5%9c%b0%e5%9d%80%e6%9f%a5%e8%a9%a2%e6%89%80%e5%9c%a8%e7%9a%84%e4%bd%8d%e7%bd%ae%e5%8f%8a%e5%b1%85%e4%bd%8f%e7%92%b0%e5%a2%83-869.html" target="_blank" rel="noopener">知道對方的IP及域名地址查詢所在的位置及居住環境</a></div></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.moonlol.com/pc-mobile-ip-9161.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			<dc:creator>hemu3q@gmail.com (Jack!)</dc:creator></item>
		<item>
		<title>國際版TikTok解除香港地區限制-VPN神器</title>
		<link>https://www.moonlol.com/%e5%9c%8b%e9%9a%9b%e7%89%88tiktok%e9%a6%99%e6%b8%afhk-9151.html</link>
					<comments>https://www.moonlol.com/%e5%9c%8b%e9%9a%9b%e7%89%88tiktok%e9%a6%99%e6%b8%afhk-9151.html#respond</comments>
		
		
		<pubDate>Mon, 15 Jun 2026 13:39:08 +0000</pubDate>
				<category><![CDATA[網絡寬頻]]></category>
		<category><![CDATA[Proxy代理Vpn]]></category>
		<guid isPermaLink="false">https://www.moonlol.com/?p=9151</guid>

					<description><![CDATA[香港是一個言論自由，網絡自由的城市，然而!受到某政治的影響，在 2020 年 TikTok  國際版，宣布退出 [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>香港是一個言論自由，網絡自由的城市，然而!受到某政治的影響，在 2020 年 TikTok  國際版，宣布退出香港市場，包括印度、澳門和中國大陸的用戶，在 Google Play 和 App Store 限制下載及使用國際版 TikTok APP 及網頁版，若是你身處在這些受限地區，可能無法正常觀看、下載 TikTok 國際版 ，這時候可以使用 VPN 神器，解除地區限制。<span id="more-9151"></span></p>
<p>現在打開 TikTok  網頁版，就會出現以下信息，大概是說"宣布終止業務"的告示。</p>
<p><strong>Dear Users,</strong></p>
<p>We regret to inform you that we have discontinued operating TikTok in Hong Kong.</p>
<p>Thank you for the time you have spent with us on the platform and for giving us the opportunity to bring a little bit of joy into your life.</p>
<p>The TikTok Team</p>
<p><strong>TikTok 官方網頁：</strong><a href="https://www.tiktok.com" target="_blank" rel="noopener">www.tiktok.com</a></p>
<p><img decoding="async" src="https://i.imgur.com/5CFM5nA.jpeg" /></p>
<p><span style="color: #800000;"><strong>TikTok 手機</strong></span></p>
<p><span style="color: #ff0000;"><strong>01.</strong></span> 手機安裝及開啟 VPN APP，並連接到國外伺服器。<span style="color: #008000;">圖片▼</span></p>
<p><img decoding="async" src="https://i.imgur.com/ao1e1c1.jpeg" /></p>
<p><strong><span style="color: #ff0000;">02.</span></strong> 打開 TikTok 網頁，會有提示你打開應用程式APP，請按「<strong>暫時不要</strong>」即可。<span style="color: #008000;">圖片▼</span></p>
<p><img decoding="async" src="https://i.imgur.com/ek1Td8R.jpeg" /></p>
<p><span style="color: #ff6600;"><strong>Microsoft Edge 瀏覽器：</strong></span>在底部點擊「<strong>設定</strong>」圖案 → 滑動選單點「<strong>檢視桌面網站</strong>」<span style="color: #008000;">圖片▼</span></p>
<p><img decoding="async" src="https://i.imgur.com/6UK3naH.jpeg" /></p>
<p><span style="color: #ff6600;"><strong>Google Chrome 瀏覽器：</strong></span>請按右上方的「<strong>設定</strong>」圖案 → 下拉選單點「<strong>桌面版網站</strong>」<span style="color: #008000;">圖片▼</span></p>
<p><img decoding="async" src="https://i.imgur.com/TgQ3lzp.jpeg" /></p>
<p><span style="color: #ff6600;"><strong>FireFox 瀏覽器：</strong></span>請按右下方的「<strong>設定</strong>」圖案 → 下拉選單點「<strong>桌面版網站</strong>」<span style="color: #008000;">圖片▼</span></p>
<p><img decoding="async" src="https://i.imgur.com/l4joRB4.jpeg" /></p>
<p><span style="color: #800000;"><strong>TikTok 電腦PC</strong></span></p>
<p><span style="color: #ff0000;"><strong>01.</strong></span> 下載 SoftEther VPN 軟體，介面支援英文、日語、簡體中文</p>
<p><strong>SoftEther VPN：</strong><a href="https://www.softether.org" target="_blank" rel="noopener">官方網站</a></p>
<p><strong>SoftEther VPN：</strong><a href="https://www.softether.org/5-download" target="_blank" rel="noopener">下載地址</a></p>
<p><span style="color: #ff0000;"><strong>02.</strong></span> 安裝及打開軟體，請按「<strong>VPN Gate 公共 VPN 中繼服務器</strong>」欄位 <span style="color: #008000;">圖片▼</span></p>
<p><img decoding="async" src="https://i.imgur.com/CkkWvfS.jpeg" /></p>
<p><span style="color: #ff0000;"><strong>03.</strong></span> VPN 有提供日本、韓國、英國等伺服器，請自行選擇一個線路速度最快的，然後!點擊「<strong>連接到 VPN 服務器</strong>」按鈕 <span style="color: #008000;">圖片▼</span></p>
<p><img decoding="async" src="https://i.imgur.com/khp5GJj.jpeg" /></p>
<p><span style="color: #ff0000;"><strong>04.</strong></span> 選擇 VPN 協議，建議選擇 TCP 協議，包含 HTTPS 保護 <span style="color: #008000;">圖片▼</span></p>
<p><img decoding="async" src="https://i.imgur.com/rz4LBhW.jpeg" /></p>
<p><span style="color: #ff0000;"><strong>05.</strong></span> 不使用 VPN 了，請記得右鍵按「<strong>VPN Gate Connection</strong>」下拉選單，選擇「<strong>斷開</strong>」<span style="color: #008000;">圖片▼</span></p>
<p><img decoding="async" src="https://i.imgur.com/qOyWvVz.jpeg" /></p>
<p>成功瀏覽到國際版 TikTok</p>
<p><img decoding="async" src="https://i.imgur.com/nSj9Sre.jpeg" /></p>
<p><div class="mo-post-and">相關文章：<br />
01. <a href="https://www.moonlol.com/tiktok-download-%e6%8a%96%e9%9f%b3%e4%b8%8b%e8%bc%89-6536.html" target="_blank" rel="noopener">抖音短視頻下載(TikTok Download)及網頁版(電腦版)</a></div></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.moonlol.com/%e5%9c%8b%e9%9a%9b%e7%89%88tiktok%e9%a6%99%e6%b8%afhk-9151.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			<dc:creator>hemu3q@gmail.com (Jack!)</dc:creator></item>
		<item>
		<title>香港及澳門行山(登山)APP推薦</title>
		<link>https://www.moonlol.com/%e9%a6%99%e6%b8%af-%e6%be%b3%e9%96%80-%e8%a1%8c%e5%b1%b1-%e7%99%bb%e5%b1%b1-app-9118.html</link>
					<comments>https://www.moonlol.com/%e9%a6%99%e6%b8%af-%e6%be%b3%e9%96%80-%e8%a1%8c%e5%b1%b1-%e7%99%bb%e5%b1%b1-app-9118.html#respond</comments>
		
		
		<pubDate>Mon, 01 Jun 2026 05:39:33 +0000</pubDate>
				<category><![CDATA[點好生活]]></category>
		<category><![CDATA[交通資訊]]></category>
		<guid isPermaLink="false">https://www.moonlol.com/?p=9118</guid>

					<description><![CDATA[香港行山路線甚多，每一條登山路線都有其特色，沿途風景也很美麗，是很多海內外人士喜愛來港露營、探險的地方，知道有 [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>香港行山路線甚多，每一條登山路線都有其特色，沿途風景也很美麗，是很多海內外人士喜愛來港露營、探險的地方，知道有大部份人士，來自其他國家或地區，可能對於香港的山路不太熟悉，如果不熟路行錯路，在山上空無一人，該怎麼辦呢!?我們可以借助現今的數碼科技，在智能手機安裝行山APP應用程式，這樣登山的時候就不會迷路了。<span id="more-9118"></span></p>
<p>本人在行山前，都會做大量的 Research 如會在YouTube、抖音TikTok及 Google 谷歌尋找相關人士的足跡，預先看一看此路線的狀況及環境，也會利用手機在行山 APP 應用程式，搜尋登山路線，做足一切準備功夫后，才起行探險去。</p>
<p><img decoding="async" src="https://i.imgur.com/JkNSR8P.png" /></p>
<p>香港或澳門行山必裝 APP  應用程式推介</p>
<p><span style="color: #800000;"><strong>HKSOS</strong></span></p>
<p><strong>官方網站：</strong><a href="https://www.police.gov.hk/isw/hksos" target="_blank" rel="noopener">police.gov.hk/hksos</a></p>
<p><strong>下載地址：</strong><a href="https://play.google.com/store/apps/details?id=com.sosapp.user" target="_blank" rel="noopener">(1) Google Play 下載</a> / <a href="https://apps.apple.com/hk/app/hksos/id1671480993" target="_blank" rel="noopener">(2) App Store 下載 </a> / <a href="https://appgallery.huawei.com/app/C110688291" target="_blank" rel="noopener">(3) 華為APP商店 下載</a></p>
<p><strong>影片：</strong><a href="https://www.youtube.com/watch?v=yN_UNg57jlE" target="_blank" rel="noopener">YouTube.com</a></p>
<p><strong>簡介：</strong>《HKSOS》是由香港警務處開發的免費緊急求助手機應用程式，專為海陸空戶外活動愛好者而設。當用家遇險時，它能一鍵直達999報案中心，並透過精準定位協助搜救人員在數小時內鎖定位置，大幅縮短救援時間。</p>
<p><span style="color: #800000;"><strong>香港遠足路線</strong></span></p>
<p><strong>官方網站：</strong><a href="https://hikingtrailhk.appspot.com" target="_blank" rel="noopener">hikingtrailhk.appspot.com</a></p>
<p><strong>下載地址：</strong><a href="https://play.google.com/store/apps/details?id=tsoiyatshing.hikingtrailhk" target="_blank" rel="noopener">(1) Google Play 下載</a> / <a href="https://apps.apple.com/hk/app/%E9%A6%99%E6%B8%AF%E9%81%A0%E8%B6%B3%E8%B7%AF%E7%B7%9A/id1403380232" target="_blank" rel="noopener">(2) App Store 下載</a> / <a href="https://appgallery.huawei.com/#/app/C102253995" target="_blank" rel="noopener">(3) 華為APP商店 下載</a></p>
<p><strong>影片：</strong><a href="https://www.youtube.com/watch?v=yHM6OMoQc7Q" target="_blank" rel="noopener">YouTube.com</a></p>
<p><strong>簡介：</strong>《香港遠足路線》是一個香港行山APP，提供離線地圖和過百條的行山路線，還有繪畫路線、分享路線、計算距離及上落高度、評估需時、GPS定位、顯示方向、記錄軌跡、通知你偏離路線等功能。</p>
<p><span style="color: #800000;"><strong>HikingBook</strong></span></p>
<p><strong>官方網站：</strong><a href="https://hikingbook.net" target="_blank" rel="noopener">hikingbook.net</a></p>
<p><strong>下載地址：</strong><a href="https://play.google.com/store/apps/details?id=net.hikingbook.hikingbook" target="_blank" rel="noopener">(1) Google Play 下載</a> / <a href="https://apps.apple.com/tw/app/hikingbook-登山健行-跑步-單車-安全探索戶外/id1067838748" target="_blank" rel="noopener">(2) App Store 下載</a> / <a href="https://galaxystore.samsung.com/detail/net.hikingbook.hikingbook" target="_blank" rel="noopener">(3) Galaxy Store 下載</a></p>
<p><strong>影片：</strong><a href="https://www.youtube.com/hikingbook" target="_blank" rel="noopener">YouTube.com</a></p>
<p><strong>簡介：</strong>《Hikingbook》令每個戶外旅程更安心精彩！無論是行山遠足、越野 跑或單車騎行，都能輕鬆規劃、安全探索、完整記錄 。</p>
<p><span style="color: #ff6600;"><strong>推薦新手路線：</strong></span></p>
<p>以下幾條家樂徑，是很多香港人必行的行山路線。</p>
<p>手機只要安裝及打開「<strong>香港遠足路線</strong>」APP 應用程式，在「<strong>搜尋</strong>」欄位輸入「<strong>九龍水塘</strong>」或「<strong>石梨貝水塘</strong>」或「<strong>城門水塘</strong>」或「<strong>獅子山</strong>」或「<strong>望夫石</strong>」或「<strong>鷹巢山自然教育徑</strong>」或「<strong>黃大仙元清閣</strong>」的關鍵字詞，即可找到相關行程路線。</p>
<p><span style="color: #808000;"><strong>路線一：石梨貝水塘及九龍水塘及石籬(安蔭)</strong></span></p>
<p><strong>地圖專頁：</strong><a href="https://hikingtrailhk.appspot.com/hk/s/gHeDeo" target="_blank" rel="noopener">hikingtrailhk.appspot.com/gHeDeo</a></p>
<p><span style="color: #808080;">(黃大仙元清閣至石梨貝水塘+九龍水塘)</span></p>
<p><span style="color: #808000;"><strong>路線二：梨木樹和城門水塘及九龍水塘</strong></span></p>
<p><strong>地圖專頁：</strong><a href="https://hikingtrailhk.appspot.com/s/mwsuGD" target="_blank" rel="noopener">hikingtrailhk.appspot.com/mwsuGD</a></p>
<p><span style="color: #808080;">(黃大仙元清閣至大埔公路+城門水塘)</span></p>
<p><span style="color: #808000;"><strong>路線三：獅子山+望夫石+鷹巢山自然教育徑</strong></span></p>
<p><strong>地圖專頁：</strong><a href="https://hikingtrailhk.appspot.com/s/lNOKtH" target="_blank" rel="noopener">hikingtrailhk.appspot.com/s/lNOKtH</a></p>
<p><span style="color: #808080;">(黃大仙元清閣至鷹巢山自然教育徑+望夫石或獅子山)</span></p>
<p>如果閣下是使用第三方行山APP(登山APP)，例如：HikingBook、TrailWatch、WayMe、綠遊香港Green HK Green等!...你可以下載 <strong>GPX</strong> 離線地圖檔案資料，並且自行導入到相關應用程式內。</p>
<p><strong>gpx 路線檔案文件：</strong><a href="https://drive.google.com/drive/folders/1FkCaX60mv19PUlMJTBvy9vM96g60z-7C?usp=sharing" target="_blank" rel="noopener">立即下載&gt;&gt;</a></p>
<p><div class="mo-post-and">相關文章：<br />
01. <a href="https://www.moonlol.com/gps-status-test-7799.html" target="_blank" rel="noopener">GPS定位不準亂跑掉飄移解決方法APP</a><br />
02. <a href="https://www.moonlol.com/gps-test-edu-9188.html" target="_blank" rel="noopener">行山(登山)GPS Test教學</a><br />
03. <a href="https://www.moonlol.com/calculator-walking-time-hiking-fraction-9007.html" target="_blank" rel="noopener">走路及跑步和行山(登山)公里分數計算器</a><br />
04. <a href="https://www.moonlol.com/%e9%be%8d%e8%84%8a%e5%9c%9f%e5%9c%b0%e7%81%a3%e5%b0%8f%e8%a5%bf%e7%81%a3-4983.html" target="_blank" rel="noopener">港島徑「龍脊」土地灣行至小西灣</a><br />
05. <a href="https://www.moonlol.com/%e5%85%83%e6%b8%85%e9%96%a3%e9%bb%83%e5%a4%a7%e4%bb%99%e7%a5%a0-6584.html" target="_blank" rel="noopener">黃大仙元清閣(黃大仙祠)地址及行程路線</a><br />
06. <a href="https://www.moonlol.com/%e5%b7%b4%e5%a3%ab%e5%b0%8f%e5%b7%b4%e6%b8%a1%e8%bc%aaqrcode%e4%ba%8c%e7%b6%ad%e7%a2%bc-6784.html" target="_blank" rel="noopener">巴士or小巴or渡輪用QR Code二維碼付車費</a><br />
07. <a href="https://www.moonlol.com/%e6%b0%b4%e5%8f%a3%e6%9d%91%e6%b3%a5%e7%81%98-3719.html" target="_blank" rel="noopener">水口村泥灘掘蜆及行程路線</a></div></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.moonlol.com/%e9%a6%99%e6%b8%af-%e6%be%b3%e9%96%80-%e8%a1%8c%e5%b1%b1-%e7%99%bb%e5%b1%b1-app-9118.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			<dc:creator>hemu3q@gmail.com (Jack!)</dc:creator></item>
		<item>
		<title>你的很多痛苦，不是別人造成的！</title>
		<link>https://www.moonlol.com/%e7%97%9b%e8%8b%a6%e7%85%a9%e6%83%b1%e5%8d%b3%e8%8f%a9%e6%8f%90-9096.html</link>
					<comments>https://www.moonlol.com/%e7%97%9b%e8%8b%a6%e7%85%a9%e6%83%b1%e5%8d%b3%e8%8f%a9%e6%8f%90-9096.html#respond</comments>
		
		
		<pubDate>Fri, 29 May 2026 16:25:53 +0000</pubDate>
				<category><![CDATA[博誌雜碎]]></category>
		<category><![CDATA[碎言碎語]]></category>
		<guid isPermaLink="false">https://www.moonlol.com/?p=9096</guid>

					<description><![CDATA[你的很多痛苦，不是別人造成的！是你一開始就誤會了世界。 你以為父母應該懂你，伴侶應該疼愛你，朋友應該站在你這邊 [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>你的很多痛苦，不是別人造成的！是你一開始就誤會了世界。</p>
<p>你以為父母<span style="color: #993300;"><strong>應該</strong></span>懂你，伴侶<strong><span style="color: #993300;">應該</span></strong>疼愛你，朋友<span style="color: #993300;"><strong>應該</strong></span>站在你這邊，孩子以後<span style="color: #993300;"><strong>應該</strong></span>回報你。</p>
<p>你把每一段關係都寫上"<span style="color: #993300;"><strong>應該</strong></span>"兩個字，結果別人稍微做不到，你就覺得自己被虧待、被辜負、被拋下。</p>
<p>可這世上從來沒有誰簽過這種契約。<span id="more-9096"></span></p>
<p>父母生下你，是本能、緣分、責任和時代共同推著走的結果。至於他們有沒有能力真正愛你，那是另一回事。有些父母自己都沒長大，心裡一堆恐懼、匱乏和偏執，他們能給你的愛，本來就帶著局限。你非要從一口枯井裡打出清泉，打不出來就怪自己命苦，這不是清醒，是跟現實較勁。</p>
<p><strong>伴侶也是一樣</strong></p>
<p>一個人最開始選擇你，可能是喜歡，可能是新鮮感，可能是需求剛好對上，也可能是他那一刻正需要一個人陪。可持續地愛一個人，需要能力。需要智慧，需要耐心，需要擔當，需要自我約束，也需要在漫長瑣碎里不把對方當成理所當然。不是每個說愛你的人，都有這種能力。</p>
<p><strong>朋友就更不用說了</strong></p>
<p>朋友靠機緣相遇，靠價值留下來。你們曾經無話不說，不代表一輩子都要無話不說。人會變，處境會變，需求會變，圈子也會變。有些人走著走著就散了，不一定是誰壞了，只是你們不再需要彼此，也不再能互相滋養。</p>
<p><strong>關係本來就是流動的</strong></p>
<p>名言: 我對你好但我不執著於妳，因為我們彼此生活在緣份之中，而不是關係裡。(人生之不過，都是緣起緣滅，緣聚緣散罷了)</p>
<p>今天熱，明天冷。今天靠近，明天遠離。今天彼此需要，明天各有去處。你越是想把一段關係按死，越容易把自己按進痛苦裡。因為人心不是房產，不能過戶給你。感情也不是合同，不能按手印之後永遠生效。你必須接受一個事實：別人可以愛你，也可以不愛你。</p>
<p>一個人最深的恐懼，往往不是沒人愛，而是他把"有沒有人愛"當成了"我有沒有價值"。 別人回消息慢一點，他就心慌。伴侶冷淡一點，他就懷疑自己不夠好。父母一句否定，他就覺得自己一無是處。</p>
<p><strong>這樣活，太苦了</strong></p>
<p>因為你的命門全在別人手裡。別人熱情，你就覺得世界有光。別人冷淡，你就覺得自己不值錢。你看似在渴望愛，其實是在求別人替你確認。</p>
<p><strong>這才是最危險的地方</strong></p>
<p>人一旦把自己的價值交給外界，就註定要被外界反覆折磨。誰都能拿捏你一下。父母一句話能讓你疼半個月，伴侶一個眼神能讓你徹夜難眠，朋友一次疏遠能讓你懷疑所有的關係。你不是太重情，你是內里沒有站穩。</p>
<p><strong>真正的覺醒，不是突然變得無情</strong></p>
<p>是你終於明白，別人愛你，是情分。別人不愛你，也不是天塌了。你不會因為父母給不了你理想中的愛，就一生困在怨氣裡。你不會因為伴侶的愛變淡了，就覺得自己整個人都失敗了。你不會因為朋友走遠，就把自己貶得一文不值。</p>
<p><strong>你開始把自己從別人的態度里贖回來</strong></p>
<p>這一步很難。</p>
<p>因為人都想被疼愛。誰不想有人在自己累的時候接住自己，誰不想有人在自己脆弱的時候堅定站在身邊，誰不想在這人世間有一處不用防備的懷抱？想要這些，並不丟人。丟人的是，你為了得到這些，把自己跪成了討飯的人。</p>
<p><strong>愛一旦變成乞討，就沒有尊嚴了</strong></p>
<p>你不停地解釋，怕別人誤會你。你不停地付出，怕別人離開你。你不停地壓抑自己，怕關係破裂。你明明不舒服，還說沒關係。明明被傷害了，還在替對方找理由。明明已經千瘡百孔，還捨不得放手。到最後，你不是被愛滋養，而是被求愛這件事耗幹。</p>
<p><strong>真正自由的人，不再伸手討愛</strong></p>
<p>不是他不需要溫暖，而是他知道溫暖不能靠跪著換。別人願意給，他感恩。別人給不了，他也不崩塌。他不再把每個人都當成救命稻草，也不再把一段關係當成自己的全部答案。</p>
<p><img decoding="async" src="https://i.imgur.com/e2ITKFL.png" /></p>
<p><strong>你要學會自己挖一口井</strong></p>
<p>別總端著碗到處等人施捨。別人給你，你高興。別人不給你，你就怨天尤人。這樣的人永遠受制於人。你要有自己的生活、自己的收入、自己的審美、自己的判斷、自己的精神支點。你要能在無人陪伴的時候，把自己安頓好。</p>
<p>自己有水喝的人，才不會因為別人不給一杯水就發瘋。</p>
<p>父母愛你，你珍惜。</p>
<p>父母不懂你，你也不再把一生押在求他們理解上。</p>
<p>伴侶疼你，你回應。</p>
<p>伴侶變了，你也有轉身的骨氣。</p>
<p>朋友記掛你，你感激。</p>
<p>朋友淡了，你也不必追著問為什麼。</p>
<p>這是成熟。</p>
<p>很多人誤會獨立了，以為獨立就是誰都不需要。不是。</p>
<p>真正的獨立，是我可以需要你，但我不會因為你不給，就死在原地。</p>
<p>我可以愛你，但我不會因為你離開，就把自己毀掉。</p>
<p>我可以享受關係，但我不會把自己的命交給關係。</p>
<p>一個完整的人，不是沒有情感，而是沒有缺口等著別人來補。</p>
<p>你若心裡有一個巨大的洞，誰來都不夠。伴侶給你十分，你還想要二十分。朋友關心你一次，你就期待他次次都在。父母稍微補償你一點，你又開始追討過去所有虧欠。洞不補上，外面的愛再多，也會漏掉。</p>
<p>所以，不要總說沒人愛你。</p>
<p>先看自己有沒有能力愛自己。你有沒有認真吃飯，認真睡覺，認真賺錢，認真清理自己的生活？有沒有在情緒失控時把自己拉回來？有沒有在被冷落時不急著貶低自己？有沒有在別人離開時，仍然保持一點體面？</p>
<p>愛自己不是喊口號。</p>
<p>是你不再把自己丟給任何人審判。是你明知道自己有缺點，也不把自己踩進泥裡。是你不因為一次失戀就否定自己，不因為一句冷話就自輕自賤，不因為沒人陪你，就把餘生過得破罐子破摔。</p>
<p>你得敢對自己說一句狠話：我可能這一生都不會被誰完整地深愛。</p>
<p>這句話說出來，人會痛一下。</p>
<p>但痛過之後，會輕。</p>
<p>因為你終於不再拿幻想餵自己了。你承認這個可能性，不是認命，而是從虛假的期待里退出來。</p>
<p>你不再把所有精力都用來等待某個人拯救你，理解你，疼惜你，填滿你。</p>
<p>到這時候，你才真正有資格進入關係。</p>
<p>因為你不再饑餓。</p>
<p>不饑餓的人，才不會亂吃東西。 不缺愛到發慌的人，才不會誰給一點溫柔就跟著走。不把自己看輕的人，才不會在壞關係里反覆忍讓。你越完整，越能分辨什麼是愛，什麼只是利用。什麼是靠近，什麼只是填補寂寞。什麼是真心，什麼只是短暫興起。</p>
<p>最高級的活法，是把自己活成一個圓。</p>
<p>圓不是沒有稜角，不是沒有情緒，不是刀槍不入。圓是你自己能閉合。你有自己的中心，不輕易因為誰來誰走而塌掉。別人來，你接得住。 別人走，你穩得住。風吹過來，你感受風，但不去抓風。</p>
<p>人的一生，本來就是獨行。</p>
<p>只是路上會有人陪你一段。有人陪你走過雨夜，有人給你一盞燈，有人也會給你一刀。你不能因為有人給過燈，就要求他一輩子照著你。也不能因為有人給過刀，就從此恨盡天下人。</p>
<p>來的人，感謝。</p>
<p>走的人，目送。</p>
<p>虧欠你的，不必日日追討。</p>
<p>沒有給你的，也不必跪著去求。</p>
<p>自由不是你擁有多少愛，而是你終於敢承認，沒有愛的時候，你也能活。</p>
<p>而且能活得清醒、安穩、漂亮。</p>
<p><strong>文章作者：</strong>玄易知行</p>
<p><div class="mo-post-and">相關文章：<br />
01. <a href="https://www.moonlol.com/%e7%a6%8f%e6%85%a7%e9%9b%99%e4%bf%ae-7383.html" target="_blank" rel="noopener">福慧雙修-文殊菩薩開示</a><br />
02. <a href="https://www.moonlol.com/%e9%87%91%e5%89%9b%e7%b6%93-8224.html" target="_blank" rel="noopener">金剛經最核心的6句說話</a><br />
03. <a href="https://www.moonlol.com/%e5%bf%83%e6%9c%89%e5%8d%83%e6%96%a4%e5%a2%9c-%e5%8d%bb%e7%84%a1%e4%b8%80%e5%ad%97%e8%a8%80-8317.html" target="_blank" rel="noopener">心有千斤墜 卻無一字言 縱有千萬語 不知從何起</a></div></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.moonlol.com/%e7%97%9b%e8%8b%a6%e7%85%a9%e6%83%b1%e5%8d%b3%e8%8f%a9%e6%8f%90-9096.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			<dc:creator>hemu3q@gmail.com (Jack!)</dc:creator></item>
		<item>
		<title>調用純真IP庫獲取國家地區歸屬地</title>
		<link>https://www.moonlol.com/%e7%b4%94%e7%9c%9fipqqwry-9080.html</link>
					<comments>https://www.moonlol.com/%e7%b4%94%e7%9c%9fipqqwry-9080.html#respond</comments>
		
		
		<pubDate>Fri, 29 May 2026 05:50:24 +0000</pubDate>
				<category><![CDATA[源碼分享]]></category>
		<category><![CDATA[PHP]]></category>
		<guid isPermaLink="false">https://www.moonlol.com/?p=9080</guid>

					<description><![CDATA[純真 IP 庫是騰訊 QQ 旗下的產品，開放給大眾使用的 IP 數據庫，純真 IP 庫是一個輕量級的 IP 數 [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>純真 IP 庫是騰訊 QQ 旗下的產品，開放給大眾使用的 IP 數據庫，純真 IP 庫是一個輕量級的 IP 數據庫，數據格式簡單，查詢速度快，功能全面，也是免費共享任用的，很適合 Web 應用；IP 查詢工具經常需要根據使用者的 IP 地址，獲取其地理位置資訊，例如國家、省份、城市等信息；純真 IP 庫（QQWry）是一個常用的 IP 地址資料庫，提供了豐富的 IP 位址與地理位置的映射關係， 本文將介紹如何使用 PHP 接入純真 IP 庫，並通過一個完整的案例演示如何實現 IP 位址的地理位置，從而調用純真 IP 庫獲取國家地區歸屬地等查詢。<span id="more-9080"></span></p>
<p>純真 IP 庫 (QQWry.dat) 你可以前往純真網站或 GitHub 下載。</p>
<p><strong>純真官方網站：</strong><a href="https://www.cz88.net" target="_blank" rel="noopener">cz88.net</a></p>
<p><strong>純真 IP 社區版：</strong><a href="https://www.cz88.net/geo-public" target="_blank" rel="noopener">cz88.net/geo-public</a></p>
<p>IP 查詢應用可利用純真 IP 庫的 DAT 數據格式，編寫一個 PHP 類來實現 IP 地址的查詢功能。 </p>
<p><span style="color: #800000;"><strong>完整代碼如下：</strong></span></p>
<p><span style="color: #ff0000;"><strong>01.</strong></span> 將以下代碼儲存成「<strong>cz88.php</strong>」檔案文件</p>


<pre class="wp-block-code"><code>&lt;?php
error_reporting(0); // 關閉錯誤報告

class QQWry {
   
    private $file; // IP數據庫文件路徑
    private $fd;   // 文件句柄

    private $total; // 總記錄數

    // 索引區
    private $indexStartOffset; // 索引區起始偏移量
    private $indexEndOffset;   // 索引區結束偏移量

    /**
     * 構造函數，初始化IP數據庫
     * @param string $file IP數據庫文件路徑
     * @throws Exception 文件不存在或不可讀時拋出異常
     */
    public function __construct($file) {
   
        if (!file_exists($file) || !is_readable($file)) {
   
            throw new Exception("{$file} does not exist, or is not readable");
        }
        $this->file = $file;
        $this->fd = fopen($file, 'rb');

        // 讀取索引區起始偏移量
        $this->indexStartOffset = $this->unpackLong($this->readOffset(4, 0));

        // 讀取索引區結束偏移量
        $this->indexEndOffset = $this->unpackLong($this->readOffset(4));

        // 計算總記錄數
        $this->total = ($this->indexEndOffset - $this->indexStartOffset) / 7 + 1;
    }

    /**
     * 查詢IP地址對應的地理位置
     * @param string $ip IP地址
     * @return array 包含國家和地區的數組
     * @throws Exception IP地址無效時拋出異常
     */
    public function query($ip) {
   
        // 驗證IP地址格式
        if (!filter_var($ip, FILTER_VALIDATE_IP)) {
   
            throw new Exception("{$ip} is not a valid IP address");
        }

        // 將IP地址轉換為整數
        $ipNum = ip2long($ip);

        // 查找IP所在的索引
        $ipFind = $this->find($ipNum, 0, $this->total);

        // 計算IP記錄的偏移量
        $ipOffset = $this->indexStartOffset + $ipFind * 7 + 4;
        $ipRecordOffset = $this->unpackLong($this->readOffset(3, $ipOffset) . chr(0));

        // 讀取並返回IP記錄
        return $this->readRecord($ipRecordOffset);
    }

    /**
     * 讀取IP記錄
     * @param int $offset 記錄偏移量
     * @return array 包含國家和地區的數組
     */
    private function readRecord($offset) {
   
        $record = &#091;'', ''];

        $offset += 4;

        $flag = ord($this->readOffset(1, $offset));

        if ($flag == 1) {
   
            $locationOffset = $this->unpackLong($this->readOffset(3, $offset + 1) . chr(0));
            $subFlag = ord($this->readOffset(1, $locationOffset));

            if ($subFlag == 2) {
   
                // 國家
                $countryOffset = $this->unpackLong($this->readOffset(3, $locationOffset + 1) . chr(0));
                $record&#091;0] = $this->readLocation($countryOffset);
                // 地區
                $record&#091;1] = $this->readLocation($locationOffset + 4);
            } else {
   
                $record&#091;0] = $this->readLocation($locationOffset);
                $record&#091;1] = $this->readLocation($locationOffset + strlen($record&#091;0]) + 1);
            }
        } elseif ($flag == 2) {
   
            // 地區
            $record&#091;1] = $this->readLocation($offset + 4);

            // 國家
            $countryOffset = $this->unpackLong($this->readOffset(3, $offset + 1) . chr(0));
            $record&#091;0] = $this->readLocation($countryOffset);
        } else {
   
            $record&#091;0] = $this->readLocation($offset);
            $record&#091;1] = $this->readLocation($offset + strlen($record&#091;0]) + 1);
        }
        return $record;
    }

    /**
     * 讀取地區信息
     * @param int $offset 地區偏移量
     * @return string 地區信息
     */
    private function readLocation($offset) {
   
        if ($offset == 0) {
   
            return '';
        }

        $flag = ord($this->readOffset(1, $offset));

        // 出錯
        if ($flag == 0) {
   
            return '';
        }

        // 仍然為重定向
        if ($flag == 2) {
   
            $offset = $this->unpackLong($this->readOffset(3, $offset + 1) . chr(0));
            return $this->readLocation($offset);
        }

        $location = '';
        $chr = $this->readOffset(1, $offset);
        while (ord($chr) != 0) {
   
            $location .= $chr;
            $offset++;
            $chr = $this->readOffset(1, $offset);
        }
        return iconv('GBK', 'UTF-8//IGNORE', $location);
    }

    /**
     * 查找IP所在的索引
     * @param int $ipNum IP地址的整數表示
     * @param int $l 左邊界
     * @param int $r 右邊界
     * @return int 找到的索引
     */
    private function find($ipNum, $l, $r) {
   
        if ($l + 1 >= $r) {
   
            return $l;
        }
        $m = intval(($l + $r) / 2);

        $find = $this->readOffset(4, $this->indexStartOffset + $m * 7);
        $mIp = $this->unpackLong($find);

        if ($ipNum &lt; $mIp) {
   
            return $this->find($ipNum, $l, $m);
        } else {
   
            return $this->find($ipNum, $m, $r);
        }
    }

    /**
     * 讀取指定偏移量的數據
     * @param int $numberOfBytes 要讀取的字節數
     * @param int|null $offset 偏移量
     * @return string 讀取的數據
     */
    private function readOffset($numberOfBytes, $offset = null) {
   
        if (!is_null($offset)) {
   
            fseek($this->fd, $offset);
        }
        return fread($this->fd, $numberOfBytes);
    }

    /**
     * 將4字節的字符串轉換為長整型
     * @param string $str 4字節的字符串
     * @return int 長整型
     */
    private function unpackLong($str) {
   
        return unpack('L', $str)&#091;1];
    }

    /**
     * 析構函數，關閉文件句柄
     */
    public function __destruct() {
   
        if ($this->fd) {
   
            fclose($this->fd);
        }
    }
}
?></code></pre>


<p><span style="color: #ff0000;"><strong>02.</strong></span> 將以下代碼儲存成「<strong>index.php</strong>」檔案文件</p>


<pre class="wp-block-code"><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
&lt;html xmlns="http://www.w3.org/1999/xhtml" lang="zh-TW">
&lt;head>
&lt;meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
&lt;title>查詢IP位址&lt;/title>
&lt;/head>
&lt;body>
&lt;?php
function getClientIp() {
    $ipKeys = &#091;
        'HTTP_CLIENT_IP', 
        'HTTP_X_FORWARDED_FOR', 
        'HTTP_X_REAL_IP', 
        'HTTP_CF_CONNECTING_IP', // 適配 Cloudflare
        'REMOTE_ADDR'
    ];

    foreach ($ipKeys as $key) {
        if (!empty($_SERVER&#091;$key])) {
            // 有時標頭會包含多個逗號分隔的 IP，取第一個即可
            $ipList = explode(',', $_SERVER&#091;$key]);
            foreach ($ipList as $ip) {
                $ip = trim($ip);
                // 驗證是否為有效的 IPv4 或 IPv6 
                if (filter_var($ip, FILTER_VALIDATE_IP)) {
                    return $ip;
                }
            }
        }
    }
    return '0.0.0.0';
}
?>
&lt;?php
require 'cz88.php';

try {
   
    // 初始化IP庫
    $qqwry = new QQWry('./src/qqwry.dat');

    // 查詢IP地址
    $ip = getClientIp(); // 要查詢的IP地址
    $result = $qqwry->query($ip);

    // 輸出結果
    echo "IP: {$ip} \n";
    echo "國家: {$result&#091;0]} \n";
    echo "地區: {$result&#091;1]} \n";
} catch (Exception $e) {
   
    echo "Error: " . $e->getMessage();
}
?>
&lt;/body>
&lt;/html></code></pre>


<p><strong>提醒：</strong>其中「<strong>src/qqwry.dat</strong>」為放置純真 IP 的路徑，如有變更請自行修改相對路徑。</p>
<p><span style="color: #008000;"><strong>圖片預覧：</strong></span></p>
<p><img decoding="async" src="https://i.imgur.com/A8rYQ1f.jpeg" /></p>
<p><span style="color: #ff6600;"><strong>技術文檔：</strong></span></p>
<p><strong>01.</strong> <a href="https://developer.aliyun.com/article/1653800" target="_blank" rel="noopener">PHP接入純真IP庫</a></p>
<p><strong>02.</strong> <a href="https://hjyl.org/qqwry-ip-location" target="_blank" rel="noopener">基於純真IP庫實現評論者IP歸屬地</a></p>
<p><span style="color: #800080;"><strong>純真 IP 查詢工具：</strong></span></p>
<p>- <a href="https://www.vxia.net/post-1636.html" target="_blank" rel="noopener">IP歸屬地查詢源碼-支持IPV4/IPV6</a></p>
<p>- <a href="https://www.vxia.net/download.php?url=1636" target="_blank" rel="noopener">查詢工具下載地址!</a></p>
<div class="mo-post-and">相關文章：<br />01. <a href="https://www.moonlol.com/%e7%b4%94%e7%9c%9fqqip%e7%b9%81%e9%ab%94%e4%b8%ad%e6%96%87-1559.html" target="_blank" rel="noopener">純真QQIP數據庫下載</a><br />02 .<a href="https://www.moonlol.com/%E7%B6%B2%E9%A0%81%E9%A1%AF%E7%A4%BAip%EF%B9%91%E4%BD%9C%E6%A5%AD%E7%B3%BB%E7%B5%B1%EF%B9%91%E7%B6%B2%E7%B5%A1%E6%9C%8D%E5%8B%99%E5%85%AC%E5%8F%B8-1555.html" target="_blank" rel="noopener">網頁底部加入顯示IP﹑作業系統﹑網絡服務公司</a></div>]]></content:encoded>
					
					<wfw:commentRss>https://www.moonlol.com/%e7%b4%94%e7%9c%9fipqqwry-9080.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			<dc:creator>hemu3q@gmail.com (Jack!)</dc:creator></item>
		<item>
		<title>iframe的高度和寬度自適應</title>
		<link>https://www.moonlol.com/iframe-rwd-9068.html</link>
					<comments>https://www.moonlol.com/iframe-rwd-9068.html#respond</comments>
		
		
		<pubDate>Thu, 28 May 2026 11:34:08 +0000</pubDate>
				<category><![CDATA[源碼分享]]></category>
		<category><![CDATA[CSS]]></category>
		<guid isPermaLink="false">https://www.moonlol.com/?p=9068</guid>

					<description><![CDATA[iframe 是一項頁面嵌套技術，可以將兩個不同的網頁、兩個不同域的網站快速合併的一種技術手段。 不過在使用這 [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>iframe 是一項頁面嵌套技術，可以將兩個不同的網頁、兩個不同域的網站快速合併的一種技術手段。 不過在使用這項技術時，通常會遇到大小不匹配的情況，使用佈局視覺不友好。本站也使用到這項技術，不過在解決大小布局問題時，從互聯網搜索到的方法，感覺不太雅化，不過最終還是找到了高度和寬度自適應大小的方法。<span id="more-9068"></span></p>
<p>在介紹本站方法之前，先來說說可能的解決方法。</p>
<p>在互聯網上，你可以非常輕易的就會找到使用 javascript 來動態調整 iframe 框的高度、寬度自動調整大小。 不過你也可以找到使用純 css 及 html 佈局來解決問題的方法。 在簡單的了解之後，決定使用 css 及 html 的方案。 因為這樣無須考慮把 javascript 的控制邏輯代碼與其它的 javascript 代碼組織的問題。</p>
<p><strong>01 代碼:</strong></p>


<pre class="wp-block-code"><code>&lt;iframe src="" width="100%" height="500" allowtransparency="true"&gt;&lt;/iframe&gt;</code></pre>


<p><strong>02 代碼:</strong></p>


<pre class="wp-block-code"><code>&lt;div style="position: relative; width: 100%; padding-top: calc(100% * 720 / 1280); border: 2px black solid;"&gt;
&lt;iframe src="" style="position: absolute; width: 100%; height: 100%; top: 0;"&gt;&lt;/iframe&gt;
&lt;/div&gt;</code></pre>


<p><span style="color: #ff6600;">備註：</span>如果被嵌入的頁面，中文字或英文字不斷行或不換行，超出 iframe 框架，導致部份文字被隱藏了，你可以在網頁加上 CSS 代碼 <span style="color: #008000;">word-break:break-all</span></p>
<p><strong>CSS 強制換行、不斷行代碼:</strong> <a href="https://www.runoob.com/w3cnote/css-nowrap-break-word.html" target="_blank" rel="noopener">runoob.com/css-nowrap-word.html</a></p>
<p><span style="color: #008000;"><strong>詳細說明:</strong></span></p>
<p>使用一個 作為容器將 包裹起來，這個容器須設置這樣的樣式， 樣式設定為 。 注意，這個方法是通過一個外部容器來決定 的位置、高度、寬度， 本身不設置大小，並設定其 ，將的上邊框與外部容器的上邊框重疊，這樣就達到控制 大小問題，而且會根據視窗大小自適應哦，不信嘗試調整下當前瀏覽器的寬度，看看這個 例子會發生什麼樣的變化。<span style="color: #993300;">div iframe position: relative; width: 100%; padding-top: calc(100% * 高度/寬度) iframe position: absolute; width: 100%; height: 100%; top: 0; iframe iframe top: 0 iframe iframe iframe</span></p>
<p>如果你的是用來引用媒體視頻的，那外部容器的 的值最好跟視頻的高寬比保持一致，css 提供了可以動態計算的 函數。<span style="color: #993300;">iframe padding-top: calc</span></p>
<blockquote>
<p>使用 javascript 來控制 iframe 高寬度的原理大概是這樣的，使用 javascript 控制程式監聽視窗大小變化事件，然後計算視窗視窗視窗大小，再將具體值設置到 iframe 上。 從而實現自適應，效果上是一樣的。 但使用純 css 的方法來說，是不是更直接呢？</p>
<p>有可能互聯網上大量的基於 javascript 方法的文章是比較舊的，因為 ie 一直做為反動派，老是要跟標準不一樣。 不過大家可以放心，聽說 ie 將在 2022年就被老東家微軟全線放棄了。可以大膽使用 html5/css3</p>
</blockquote>
<p>這裡額外收穫了一個知識點，可以用來構建一個高寬比例受控制的佔位框。<span style="color: #993300;">position: relative; width: 100%; padding-top: calc(100% * 高度/寬度);</span></p>
<p><strong>代碼測試︰</strong> <a href="https://www.ifreesite.com/runcode.htm" target="_blank" rel="noopener">ifreesite.com/runcode.htm</a></p>
<div class="mo-post-and">相關文章:<br />01. <a href="https://www.moonlol.com/html-iframe-rwd-8939.html" target="_blank" rel="noopener">Html的iFrame尺寸自動縮放</a><br />02. <a href="https://www.moonlol.com/css-div-fit-content-8788.html" target="_blank" rel="noopener">CSS的div自動調整寬度和高度</a></div>


<p class="wp-block-paragraph"></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.moonlol.com/iframe-rwd-9068.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			<dc:creator>hemu3q@gmail.com (Jack!)</dc:creator></item>
		<item>
		<title>miniPaint圖片編輯器-繁體中文語言包</title>
		<link>https://www.moonlol.com/minipaint-online-image-editor-traditional-chinese-9048.html</link>
					<comments>https://www.moonlol.com/minipaint-online-image-editor-traditional-chinese-9048.html#respond</comments>
		
		
		<pubDate>Fri, 15 May 2026 07:38:29 +0000</pubDate>
				<category><![CDATA[源碼分享]]></category>
		<category><![CDATA[技術文檔]]></category>
		<guid isPermaLink="false">https://www.moonlol.com/?p=9048</guid>

					<description><![CDATA[miniPaint 是一款基於 HTML5 的線上圖片編輯器(Online image editor or O [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>miniPaint 是一款基於 HTML5 的線上圖片編輯器(Online image editor or Online photo editor)，是一款類似 Photoshop 的圖像修改APP，該款開源的修圖程序，是無需安裝、可直接在瀏覽器中運行，打開即用，支持創建 / 編輯圖像、圖層、濾鏡、馬賽克、繪圖工具等功能。<span id="more-9048"></span></p>
<p>miniPaint 開發人員及貢獻者，暫時沒有繁體中文語系選擇，不過!本人自行製造了一份繁體中文 Traditional Chinese 語言包，供有需要的人士加入到程序中。</p>
<p><span style="color: #ff0000;"><strong>01.</strong></span> 請將 <strong>zhtw.json</strong> 語言包，放在 <strong>languages</strong> 目錄：</p>
<p><span style="color: #800080;"><strong>路徑：</strong></span>/src/js/languages</p>
<p><span style="color: #ff0000;"><strong>02.</strong></span> 請將 <strong>bundle.js</strong> 文件，放在 <strong>dist</strong> 目錄：</p>
<p><span style="color: #800080;"><strong>路徑：</strong></span>/dist/</p>
<p><span style="color: #ff0000;"><strong>03.</strong></span> 修改預設界面為中文：</p>
<p><span style="color: #0000ff;"><strong>路徑：</strong></span>/src/js/config.js</p>
<p>打開文件，其中 <strong>config.LANG</strong> 項，將 <strong>en</strong> 更改為 <strong>zh</strong> 或 <strong>zhtw</strong></p>
<p><strong>zh</strong> 為簡體中文 Chinese Simplified</p>
<p><strong>zhtw</strong> 為繁體中文 Chinese Traditional</p>
<p><span style="color: #ff0000;"><strong>04.</strong></span> 如果默認介面沒有變成中文，你可以用"<strong>lang</strong>"連結引用。</p>
<p><strong>簡體中文URL:</strong> <a href="https://www.ifreesite.com/photo/pixie/?lang=zh" target="_blank" rel="noopener">ifreesite.com/photo/?lang=zh</a></p>
<p><strong>繁體中文URL:</strong> <a href="https://www.ifreesite.com/photo/pixie/?lang=zhtw" target="_blank" rel="noopener">ifreesite.com/photo/?lang=zhtw</a></p>
<p><span style="color: #ff0000;"><strong>05.</strong></span> 如果你想和朋友或網民分享你的作品或一同編輯相片，你可以用"<strong>image</strong>"連結引用。</p>
<p><strong>共同分享 / 編輯相片：</strong><a href="https://www.ifreesite.com/photo/pixie/?image=https://cdn.pixabay.com/photo/2024/05/26/10/15/bird-8788491_1280.jpg" target="_blank" rel="noopener">ifreesite.com/photo/?image=photo.jpg</a></p>
<p><span style="color: #800000;"><strong>miniPaint 繁體中文語言包：</strong></span><a href="https://e.pcloud.link/publink/show?code=XZLSciZbrL9p9zdHyVCF2hKW522gSwSWTRy" target="_blank" rel="noopener">下載-Download</a></p>
<p><strong>線上圖片編輯器：</strong><a href="https://www.ifreesite.com/photo/pixie" target="_blank" rel="noopener">ifreesite.com/photo/pixie</a></p>
<p><span style="color: #008000;"><strong>miniPaint 繁體中文(預覧)</strong></span></p>
<p><img decoding="async" src="https://i.imgur.com/tFXOwST.jpeg" /></p>
<p><strong>miniPaint 繁化歷程：</strong></p>


<pre class="wp-block-code"><code>"A problem occurred while removing undo history. It": "移除復原歷史記錄時發生問題。它",
"About": "關於",
"Active": "活動",
"Aden": "Aden",
"Advanced": "進階",
"All": "全部",
"Alpha": "透明度",
"Alpha:": "透明度：",
"Animation": "動畫",
"Anonymous": "匿名",
"Anti aliasing": "抗鋸齒",
"Application markup may have changed,": "應用標記可能已變更，",
"Arial": "Arial",
"Arrow": "箭頭",
"ArrowDown": "向下箭頭",
"ArrowLeft": "向左箭頭",
"ArrowRight": "向右箭頭",
"ArrowUp": "向上箭頭",
"Author:": "作者：",
"Auto Adjust Colors": "自動調整顏色",
"Auto Kerning": "自動字距微調",
"Auto select": "自動選擇",
"Average:": "平均值：",
"Backspace": "退格鍵",
"Base": "基礎",
"Basic": "基本",
"Black and White": "黑白",
"Blue": "藍色",
"Blue channel:": "藍色通道：",
"Blueprint": "藍圖",
"Blur": "模糊",
"Blur Radius:": "模糊半徑：",
"Blur Tool": "模糊工具",
"Blur power:": "模糊強度：",
"Borders": "邊框",
"Bottom": "底部",
"Bottom to Top": "由下至上",
"Bounds:": "邊界：",
"Box": "方框",
"Box Blur": "方框模糊",
"Box blur": "方框模糊",
"Brightness": "亮度",
"Brightness:": "亮度：",
"Brush": "畫筆",
"Bulge": "凸起",
"Bulge/Pinch Tool": "凸起/收縮工具",
"Burn": "加深",
"Can not animate 1 layer.": "無法對單一圖層進行動畫處理。",
"Can not find previous layer.": "找不到上一個圖層。",
"Can not use this tool on current layer: image already takes all area.": "無法在當前圖層上使用此工具：圖像已覆蓋整個區域。",
"Cancel": "取消",
"Canvas Size": "畫布尺寸",
"Center": "置中",
"Center x:": "居中x：",
"Center y:": "居中y：",
"Center:": "置中：",
"Change Composition": "變更組合",
"Change Layer Details": "變更圖層細節",
"Change Opacity": "變更不透明度",
"Channel:": "通道：",
"Circle": "圓形",
"Clarendon": "Clarendon",
"Clear": "清除",
"Clear Selection": "清除選取範圍",
"Clone": "複製",
"Clone Tool": "複製工具",
"Clone count:": "複製次數：",
"Clone tool disabled for resized image. Please rasterize first.": "對已調整大小的圖像禁用複製工具。請先柵格化。",
"Cloned edges": "複製邊緣",
"Close": "關閉",
"Color 1:": "顏色 1：",
"Color 2:": "顏色 2：",
"Color #": "顏色 #",
"Color Corrections": "色彩校正",
"Color Palette": "調色盤",
"Color Zoom": "色彩縮放",
"Color alpha value can not be zero.": "色彩的 Alpha 透明值不能為零。",
"Color to Alpha": "色彩轉換為透明",
"Color zoom": "色彩縮放",
"Color:": "顏色：",
"Colors": "顏色",
"Colors:": "顏色：",
"Common Filters": "常用濾鏡",
"Composition": "組合",
"Composition:": "組合：",
"Content Fill": "內容填滿",
"Contiguous": "連續",
"Contrast": "對比度",
"Contrast:": "對比度：",
"Convert layer to raster": "圖層轉換為點陣圖",
"Convert to Raster": "轉換為點陣圖",
"Copy Selection": "複製選取範圍",
"Copy to Clipboard": "複製至剪貼簿",
"Courier": "Courier",
"Crop": "裁切",
"Crop Tool": "裁切工具",
"Crop on rotated layer is not supported. Convert it to raster to continue.": "不支援在旋轉圖層上裁切。請先轉換為點陣圖以繼續。",
"Ctrl + C": "Ctrl + C",
"Ctrl+A": "Ctrl+A",
"Ctrl+C": "Ctrl+C",
"Ctrl+P": "Ctrl+P",
"Ctrl+V": "Ctrl+V",
"Ctrl+Y": "Ctrl+Y",
"Ctrl+Z": "Ctrl+Z",
"Current": "當前",
"Current Color Preview": "當前顏色預覽",
"Custom": "自訂",
"Data URL": "數據 URL",
"Data URL:": "數據 URL：",
"Decrease": "降低",
"Decrease Color Depth": "降低色彩深度",
"Degree:": "角度：",
"Del": "刪除",
"Delay:": "延遲：",
"Delete": "刪除",
"Delete Selection": "刪除選取範圍",
"Denoise": "降噪",
"Desaturate Tool": "去飽和工具",
"Description:": "描述：",
"Deutsch": "德語",
"Differences": "差異",
"Differences Down": "差異縮小",
"Direction:": "方向：",
"Dither": "抖動",
"Dithering:": "抖動：",
"Dominant color:": "主色調：",
"Dot Screen": "點陣",
"Down": "向下",
"Duplicate": "複製",
"Duplicate Layer": "複製圖層",
"Duplicate layer": "複製圖層",
"Dynamic": "動態",
"Edge": "邊緣",
"Edit": "編輯",
"Edit text...": "編輯文字...",
"Effect browser": "特效瀏覽器",
"Effects": "特效",
"Effects browser": "特效瀏覽器",
"Email:": "電子郵件：",
"Emboss": "浮雕",
"Empty selection": "清空選取範圍",
"Empty selection or type not image.": "清空選取範圍或未輸入圖像。",
"Enable autoresize:": "啟用自動調整大小：",
"End": "結束",
"English": "英語",
"English (UK)": "英語（英國）",
"Enrich": "增強",
"Enter": "輸入",
"Erase Tool": "擦除工具",
"Erase on rotate object is disabled. Please rasterize first.": "禁用旋轉對象上的擦除。請先點陣化。",
"Error": "錯誤",
"Error connecting to service.": "連線至服務時發生錯誤。",
"Error loading the list of fonts from Google.": "載入 Google 字型清單時發生錯誤。",
"Error registering service worker": "註冊服務工作者時發生錯誤",
"Error: can not find filter:": "錯誤：無法找到濾鏡：",
"Error: can not find layer with id:": "錯誤：無法找到帶有 ID 的圖層：",
"Error: missing details event target": "錯誤：缺少詳細資訊事件目標",
"Error: unknown layer type:": "錯誤：未知的圖層類型：",
"Error: unsupported attribute type:": "錯誤：不支持的屬性類型：",
"Esc": "退出",
"Escape": "逃脫",
"Español": "西班牙語",
"Expand edges": "擴展邊緣",
"Exponent:": "指數：",
"Export": "匯出",
"External": "外部",
"Erase": "擦除",
"Factor:": "因子：",
"File": "檔案",
"File name:": "檔案名稱：",
"File size:": "檔案大小：",
"Fill": "填滿",
"Fill:": "填滿：",
"Fill Tool": "填滿工具",
"Fit": "適配",
"Fit Window": "適配視窗",
"Fit window": "適配視窗",
"Flatten Image": "平面影像",
"Flip": "翻轉",
"FloydSteinberg-serpentine": "FloydSteinberg-蛇形",
"Font": "字型",
"Font:": "字型：",
"Français": "法語",
"Full HD, 1080p": " 全高清，1080p",
"Full Screen": "全螢幕",
"Full layers data": "全層數據",
"Gap:": "間距：",
"Gaussian Blur": "高斯模糊",
"Gif delay:": "GIF 延遲：",
"Gingham": "方格",
"GitHub:": "GitHub：",
"Gradient": "漸層工具",
"Gradient Radius:": "漸層半徑：",
"Grains": "顆粒",
"Graphics Interchange Format": "圖形交換格式",
"Gray": "灰色",
"Grayscale": "灰階",
"Greek": "希臘語",
"Green": "綠色",
"Green channel:": "綠色通道：",
"Greyscale:": "灰階：",
"Grid": "網格",
"Grid on/off": "網格開啟/關閉",
"Guides": "參考線",
"Guides enabled.": "參考線已啟用。",
"H Radius:": "水平半徑：",
"H. Align:": "水平對齊：",
"Heatmap": "熱力圖",
"Height (%):": "高度（%）：",
"Height:": "高度：",
"Help": "幫助",
"Helvetica": "黑體",
"Hermite": "Hermite",
"Hex": "十六進位",
"Hide": "隱藏",
"Histogram": "直方圖",
"Histogram:": "直方圖：",
"Home": "主頁",
"Horizontal": "水平",
"Horizontal Alignment": "水平對齊",
"Horizontal blur:": "水平模糊：",
"Horizontal:": "水平：",
"Hue": "色相",
"Hue Rotate": "色相旋轉",
"Hue:": "色相：",
"Image": "圖像",
"Image data with multi-layers. Can be opened using miniPaint -": "圖像數據帶有多層。可使用 MiniPaint 開啟 -",
"Impact": "影響",
"In proportion:": "等比例：",
"Increase": "增加",
"Information": "資訊",
"Inkwell": "墨井",
"Insert": "插入",
"Insert guides": "插入參考線",
"Insert new layer": "插入新圖層",
"Instagram Filters": "Instagram 濾鏡",
"Invalid Hex Code": "無效的十六進位碼",
"Italiano": "意大利語",
"JPG/JPEG Format": "JPG / JPEG 格式",
"Kerning:": "字距：",
"Key-Points": "關鍵點",
"KeyU": "U 鍵",
"Keyboard Shortcuts": "鍵盤快捷鍵",
"Keyword:": "關鍵字：",
"Lanczos": "Lanczos",
"Landscape": "橫向",
"Language": "語言",
"Last modified": "最後修改",
"Layer": "圖層",
"Layer details": "圖層詳細資訊",
"Layer is empty.": "圖層為空。",
"Layer is not compatible with resize": "圖層不相容於調整大小",
"Layer is vector, convert it to raster to apply this tool.": "圖層為向量圖，請轉換為點陣圖以應用此工具。",
"Layers": "圖層",
"Layers:": "圖層：",
"Layout:": "版面配置：",
"Leading:": "行距：",
"Left": "左",
"Left to Right": "由左至右",
"Level:": "層級：",
"Levels:": "層級：",
"Lietuvių": "立陶宛語",
"Lo-fi": "低保真",
"Luminance:": "亮度：",
"Luminosity": "光度",
"Magic Eraser Tool": "魔術橡皮擦工具",
"Merge Down": "向下合併",
"Merge Layers": "合併圖層",
"Merged": "合併",
"Metrics": "指標",
"Middle": "居中",
"Missing at least 1 size parameter.": "缺少至少 1 個尺寸參數。",
"Missing permissions to write to Clipboard.cc": "缺少寫入 Clipboard.cc 的權限",
"Mode:": "模式：",
"Module function not found.": "未找到模組功能。",
"Modules class not found:": "未找到模組類：",
"Monospace": "等寬字型",
"Mosaic": "馬賽克",
"Mouse:": "鼠標：",
"Move": "移動",
"Move Layer": "移動圖層",
"Move layer down": "向下移動圖層",
"Move layer up": "向上移動圖層",
"Name:": "名稱：",
"Negative": "負片",
"New": "新建",
"New Bezier Layer": "新貝茲曲線圖層",
"New Brush Layer": "新畫筆圖層",
"New Ellipse Layer": "新橢圓圖層",
"New File": "新建檔案",
"New Gradient Layer": "新漸層圖層",
"New Layer": "新建圖層",
"New Line Layer": "新線條圖層",
"New Pencil Layer": "新鉛筆圖層",
"New Polygon Layer": "新多邊形圖層",
"New Rectangle Layer": "新矩形圖層",
"New Text Layer": "新文字圖層",
"New file": "新建檔案",
"New from Selection": "從選取範圍新建",
"New layer": "新建圖層",
"Next": "下一個",
"Night Vision": "夜視",
"None": "無",
"Nothing is selected.": "未選取任何項目。",
"Offset X:": "X偏移：",
"Offset Y:": "Y偏移：",
"Oil": "油畫",
"Ok": "確定",
"Online image editor.": "線上圖像編輯器。",
"Opacity": "不透明度",
"Opacity:": "不透明度：",
"Open": "開啟",
"Open Data URL": "開啟數據URL",
"Open Directory": "開啟目錄",
"Open File": "開啟檔案",
"Open File Data URL": "開啟數據URL檔案",
"Open File URL": "開啟檔案網址",
"Open File Webcam": "開啟網絡攝影機檔案",
"Open Image": "開啟圖像",
"Open JSON File": "開啟JSON檔案",
"Open Test Template": "開啟測試範本",
"Open URL": "開啟網址",
"Open data URL": "開啟數據URL",
"Open from Webcam": "從視訊鏡頭開啟",
"Original Size": "原始尺寸",
"PNGTOSVG - Convert Image to SVG": "PNGTOSVG - 將圖像轉換為SVG格式",
"PageDown": "下一頁",
"PageUp": "上一頁",
"Palette": "調色盤",
"Parameter #1:": "參數1：",
"Parameter #2:": "參數2：",
"Paste": "貼上",
"Pencil": "鉛筆工具",
"Percentage:": "百分比：",
"Pick color": "色彩選擇器",
"Pixels:": "像素：",
"Placeholder comment for color channels": "色彩通道的佔位符註解",
"Placeholder comment for color picker": "色彩選擇器的佔位符註解",
"Placeholder comment for color swatches": "色彩樣本的佔位符註解",
"Play": "播放",
"Portable Network Graphics": "便攜式網絡圖形",
"Portrait": "縱向",
"Português": "葡萄牙語",
"Position:": "位置：",
"Power:": "強度：",
"Preview": "預覽",
"Previous": "上一個",
"Previous layer must be image, convert it to raster to apply this tool.": "上一個圖層必須為圖像，請轉換為點陣圖以應用此工具。",
"Print": "列印",
"Quality:": "品質：",
"Quick Load": "快速載入",
"Quick Save": "快速儲存",
"REMOVE.BG - Remove Image Background": "REMOVE.BG - 移除圖像背景",
"Radial": "徑向",
"Radial gradient": "徑向漸層",
"Radius:": "半徑：",
"Range:": "範圍：",
"Red": "紅色",
"Red channel:": "紅色通道：",
"Redo": "重做",
"Remove all": "全部移除",
"Rename": "重新命名",
"Rename Layer": "重新命名圖層",
"Rendered with errors.": "渲染時出現錯誤。",
"Rendering...": "渲染中...",
"Replace Color": "替換顏色",
"Replace color": "替換顏色",
"Replacement:": "替換：",
"Report Issues": "回報問題",
"Reset": "重設",
"Resize": "調整大小",
"Resize Boundary": "調整邊界大小",
"Resize Layer": "調整圖層大小",
"Resize Layers": "調整多個圖層大小",
"Resize Text Layer": "調整文字圖層大小",
"Resized as background": "調整為背景",
"Resized:": "調整大小：",
"Resolution:": "解析度：",
"Restore Alpha": "還原透明度",
"Right": "右",
"Right angle:": "直角：",
"Right to Left": "由右至左",
"Rotate": "旋轉",
"Rotate Layer": "旋轉圖層",
"Rotate is not supported on this type of object. Convert to raster?": "此類型物件不支援旋轉。要轉換為點陣圖？",
"Rotate left": "向左旋轉",
"Rotate:": "旋轉：",
"Ruler": "尺規",
"SQUOOSH - Compress and Compare Images": "SQUOOSH - 壓縮與比較圖像",
"Saturate": "飽和度",
"Saturation": "飽和度",
"Saturation:": "飽和度：",
"Save As": "另存為",
"Save As Data URL": "另存為數據URL",
"Save as": "另存為",
"Save as type:": "另存為類型：",
"Save layers:": "儲存圖層：",
"Scaling up is not supported in Hermite, using Lanczos.": "Hermite不支持放大，請使用Lanczos。",
"Scroll down": "向下捲動",
"Scroll up": "向上捲動",
"Search": "搜尋",
"Search Images": "搜尋圖像",
"Search for Font": "搜尋字型",
"Search:": "搜尋：",
"Select All": "全選",
"Select Text Layer": "選取文字圖層",
"Select object tool": "選取物件工具",
"Selected": "已選取",
"Selection": "選取範圍",
"Selection Tool": "選取工具",
"Sensitivity:": "靈敏度：",
"Separated": "分離",
"Separated (original types)": "分離（原始類型）",
"Sepia": "棕褐色",
"Set Image Size": "設置圖像尺寸",
"Settings": "設置",
"Shadow": "陰影",
"Shapes": "形狀",
"Shapes (H)": "形狀 (H)",
"Sharpen": "銳化",
"Sharpen Tool": "銳化工具",
"Sharpen:": "銳化：",
"Shift + S": "Shift + S",
"Shortcut Key:": "快捷鍵：",
"Show": "顯示",
"Show \/ Hide": "顯示 \/ 隱藏",
"Show file size:": "顯示檔案大小：",
"Simple": "簡易",
"Size is too big, max": "尺寸太大，最大值為",
"Size:": "尺寸：",
"Skip - layer must be image.": "跳過 - 圖層必須是圖像。",
"Solarize": "曝光反轉",
"Sorry, cold not load getUserMedia() data:": "抱歉，無法載入 getUserMedia() 數據:",
"Sorry, image could not be loaded.": "抱歉，無法載入圖片。",
"Sorry, image could not be loaded. Try copy image and paste it.": "抱歉，圖片無法載入。請嘗試複製圖像並貼上。",
"Sorry, image is too big, max 5 MB.": "抱歉，圖片太大，最大值為 5 MB。",
"Source coordinates saved.": "來源座標已儲存。",
"Source is empty, right click on image or use long press to save source position.": "來源為空，請在圖片上按右鍵或長按以儲存來源位置。",
"Source layer:": "來源圖層：",
"Sprites": "圖像精靈",
"Square": "正方形",
"Stream:": "串流：",
"Strength:": "強度：",
"Strict": "嚴格",
"Stroke size:": "線條粗細：",
"TINYPNG - Compress PNG and JPEG": "TINYPNG - 壓縮PNG和JPEG",
"Tab": "標籤",
"Tag Image File Format": "標記圖像檔案格式",
"Tahoma": "Tahoma",
"Target:": "目標：",
"The quick brown fox jumps over the lazy dog.": "敏捷的棕色狐貍跳過了懶狗。",
"There": "那裡",
"There are no layers behind.": "背後沒有圖層。",
"There is only 1 layer.": "只有 1 個圖層。",
"This layer must contain an image. Please convert it to raster to apply this tool.": "此圖層必須包含圖像。請將其轉換為點陣圖以應用此工具。",
"Tilt Shift": "視角移位",
"Times New Roman": "Times New Roman",
"Toaster": "Toaster",
"Toggle": "切換",
"Toggle Color Channels": "切換色彩通道",
"Toggle Color Picker": "切換取色器",
"Toggle Menu": "切換選單",
"Toggle Swatches": "切換樣本",
"Tools": "工具",
"Top": "頂部",
"Top to Bottom": "由上至下",
"Total pixels:": "總像素數：",
"Translate": "翻譯",
"Translate Layer": "翻譯圖層",
"Translate error, can not find dictionary:": "翻譯錯誤，找不到字典：",
"Transparent:": "透明：",
"Trim": "修剪",
"Trim Layers": "修剪圖層",
"Trim borders:": "修剪邊框：",
"Trim layer:": "修剪圖層：",
"Trim white color?": "修剪白色部分？",
"Text": " 文字工具",
"Type:": "類型：",
"Türkçe": "土耳其語",
"Undo": "復原",
"Unique colors:": "唯一顏色：",
"Up": "向上",
"Update": "更新",
"Update Brush Layer": "更新畫筆圖層",
"Update Pencil Layer": "更新鉛筆圖層",
"Update guides": "更新指南",
"Use Ctrl+V keyboard shortcut to paste from Clipboard.": "使用 Ctrl+V 快捷鍵從剪貼簿貼上。",
"V Radius:": "垂直半徑：",
"V. Align:": "垂直對齊：",
"Valencia": "Valencia",
"Verdana": "Verdana",
"Version:": "版本：",
"Vertical": "垂直",
"Vertical Alignment": "垂直對齊",
"Vertical blur:": "垂直模糊：",
"Vertical:": "垂直：",
"Vibrance": "飽和度",
"View": "視圖",
"Vignette": "暈影",
"ViliusL": "ViliusL",
"Vintage": "復古",
"Webcam": "網路攝影機",
"Webcam #": "網路攝影機 #",
"Website:": "網站：",
"Weppy File Format": "Weppy 檔案格式",
"Width (%):": "寬度（%）：",
"Width:": "寬度：",
"Windows Bitmap": "Windows 點陣圖",
"Word": "單詞",
"Word + Letter": "單詞 + 字母",
"Wrap At:": "在此處換行：",
"Wrap:": "自動換行：",
"Wrong dimensions": "尺寸錯誤",
"Wrong file type, must be image or json.": "檔案類型錯誤，必須是圖像或JSON。",
"X end:": "X 結束：",
"X position:": "X 位置：",
"X start:": "X 開始：",
"X-Pro II": "X-Pro II",
"Y end:": "Y 結束：",
"Y position:": "Y 位置：",
"Y start:": "Y 開始：",
"You can also drag and drop items into browser.": "您也可以將項目拖放到瀏覽器中。",
"Your browser does not support canvas or JavaScript is not enabled.": "您的瀏覽器不支持畫布或 JavaScript 未啟用。",
"Your browser does not support this format.": "您的瀏覽器不支持此格式。",
"Your search did not match any images.": "您的搜尋沒有符合的圖片。",
"Zoom": "縮放",
"Zoom Blur": "縮放模糊",
"Zoom In": "放大",
"Zoom Out": "縮小",
"Zoom blur": "縮放模糊",
"Zoom in": "放大",
"Zoom out": "縮小",
"Zoom:": "縮放："</code></pre>
]]></content:encoded>
					
					<wfw:commentRss>https://www.moonlol.com/minipaint-online-image-editor-traditional-chinese-9048.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			<dc:creator>hemu3q@gmail.com (Jack!)</dc:creator></item>
	</channel>
</rss><!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Object Caching 14/14 objects using Disk
Page Caching using Disk (Page is feed) 
Lazy Loading (feed)
Minified using Disk
Database Caching using Disk

Served from: www.moonlol.com @ 2026-06-23 23:14:45 by W3 Total Cache
-->