Windows 內建封包側錄工具 - Pktmon
https://blog.darkthread.net/blog/pktmon/?fbclid=IwAR21OOy1Gif-GUK80bmFCETgnYm-vn3KI1LIHTPsckUM_kIAW4Ru4rezCCU
因遠端桌面問題咬住舊印表裝置需要刪除註冊表
REG DELETE "hkcu\Software\Microsoft\Windows NT\CurrentVersion\Devices" /va /f
2021年9月14日 星期二
2021年9月3日 星期五
手機版網頁滿版顯示
語法
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0, user-scalable=yes"/>Viewport的屬性
width / height:設定該頁適合顯示的畫面大小
iPhone 看普通網頁時會將顯示像素寬度變成 980px
若想正常顯示可使用device-width設定依行動裝置的螢幕寬度而定
initial-scale:設定預設的畫面是以多少倍的 viewport 來顯示
minimum-scale / maximun-scale:設定畫面提供縮放的最小與最大比例,值都為正數。
最小值default:0.25;
最大值default:10.0
通常可設定maximun-scale=1.0 防止螢幕翻轉成landscape模式後重新讓內容去對應轉動後viewport的寬度
通常可設定maximun-scale=1.0 防止螢幕翻轉成landscape模式後重新讓內容去對應轉動後viewport的寬度
user-scalable:設定是否能夠讓使用者縮放的功能
加上以下這段可以自訂iPhone新增網頁到主畫面的icon
<link rel="apple-touch-icon" href="icon.png"/>
其他設定
portrait模式(直式)
landscape模式(橫式)
顯示不同css設定 (Opera不支援)
<link rel="stylesheet" media="all and (orientation:portrait)" href="portrait.css">
<link rel="stylesheet" media="all and (orientation:landscape)" href="landscape.css">
使用者將網頁加到主畫面時,可以使網址列與最下面的選單消失,使網頁變為全螢幕模式
<meta name="apple-mobile-web-app-capable" content="yes" />
強制使用者無法拉動網頁
<script type="text/javascript">
document.addEventListener("touchmove", function(event){
event.preventDefault();
}, false);
</script>
<link rel="stylesheet" media="all and (orientation:portrait)" href="portrait.css">
<link rel="stylesheet" media="all and (orientation:landscape)" href="landscape.css">
使用者將網頁加到主畫面時,可以使網址列與最下面的選單消失,使網頁變為全螢幕模式
<meta name="apple-mobile-web-app-capable" content="yes" />
強制使用者無法拉動網頁
<script type="text/javascript">
document.addEventListener("touchmove", function(event){
event.preventDefault();
}, false);
</script>
資料來源:http://cfyeric.blogspot.com/2010/10/blog-post.html
訂閱:
文章 (Atom)
使用 DiskSpd 測試磁碟效能
DiskSpd 是微軟創建的命令行磁碟測試工具。它結合了強大的IO工作負載定義來測量磁碟效能。由於它支援自由配置和調整參數,使其成為存儲效能測試、驗證和基準測試的理想工具。 步驟 1. 從 GitHub (說明) https://github.com/Microsoft/di...
-
有時因距離與時間問題,需要用Windows遠端連線,而在連線後, 於登入畫面,輸入了帳號、密碼,卻出現: 登入失敗:使用者帳戶限制。可能原因為不允許空的密碼,登入時數限制,或強制的原則限制。 找到以下方式解除方式,得以順利運行遠端連線問題。 方法1 1. [開始]>[執行...
-
---------------- 管理者操作 ---------------- USE master; GO --將資料庫 AdventureWorks 更改為單一使用者模式 ALTER DATABASE AdventureWorks SET SINGLE_USER...
-
想要打開安全性設定就會跳出這個訊息 點了尋找應用程式 store也沒有顯示東西可以下載 解決方法 開始→"Windows PowerShell(I)(管理員)(A )」→輸入: (WIndows11中可能顯示Windows 終端(管理員)) sfc /SCANNOW (...