window Resize

html 測試 左入右出

html 測試 上入下出

html 測試 單入單出

html 測試 左單右單

tt

display: grid

display: grid 網格顯示
grid-template-columns 網格模板列
grid-template-rows 網格模板行

00
00
00
00

Javascript 字串 或 文章 編碼加密 String or article encoding and encryption 1

Javascript 字串 或 文章 編碼加密
String or article encoding and encryption 1

密碼/password

原文 字串/文章 Original string
00
#html #html #script #字串加密 #字串解密 #decode #encode #密碼 password #密碼錯誤 #字串加密編碼 String encryption #加密後字串解碼 String decoding after encryption

Javascript 字串 或 文章 編碼加密 String or article encoding and encryption 2

Javascript 字串 或 文章 編碼加密
String or article encoding and encryption 2

<script src='https://cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.2/rollups/aes.js'></script>
第三方提供 function。
 
CryptoJS.AES.encrypt(str,key).toString() 
           功能 字串/文章 編碼加密,
           傳回 原始字串進行編碼加密,
           str = 需要 編碼加密 字串/文章,
           key = 密碼。

CryptoJS.AES.decrypt(str,key).toString(CryptoJS.enc.Utf8)
           功能 將加密編碼還原為 字串/文章,
           傳回 加密編碼還原為 字串/文章,
           str = 加密後編碼,
           key = 密碼。     
00
#html #html #script #字串加密 #字串解密 #decode #encode #密碼 password #密碼錯誤 #字串加密編碼 String encryption #加密後字串解碼 String decoding after encryption

btoa() / atob() / escape() / unescape()

btoa() / atob() / escape() / unescape()

btoa(str) : 將字串轉換為 Base64 編碼。
atob(str) : 將 Base64 編碼還原回字串。 
       但不支援中文字串。

btoa(str) : Convert string to Base64。
atob(str) : Base64 restore back to string。
       But does not support Chinese text strings。
00


escape()           : 將中文字串轉進行編碼後換為 Base64 編碼 
unescape()         : 將 Base64 編碼還原回轉回中文字串 
btoa(escape(str))  : 將字串轉換為 Base64 編碼
unescape(atob(str)): 將 Base64 編碼還原回字串

加入 escape() / unescape()  中英文都能支援 
Both Chinese and English are supported    
00

字型樣式

字型樣式

<b>bold 粗體 </b>
bold 粗體
<strong>important text 強調</strong>
important text 強調
<em>marks text 強調</em>
marks text 強調
<i>italic 斜體 </i>
italic 斜體
<cite>Define the title 作品名稱</cite>
Define the title 作品名稱
AAA<sub>subscript 下標 </sub>AAA
AAAsubscript 下標 AAA
AAA<sup>superscript 上標</sup>AAA
AAAsuperscript 上標AAA
<kbd>keyboard input 鍵盤符號</kbd>
keyboard input 鍵盤符號
<samp>Define text 簡單文字</samp>
Define text 簡單文字
<code>code 程式碼</code>
code 程式碼
<small>superscript 縮小字型</small>
superscript 縮小字型
<tt>teletype text 打字機文本 </tt>
teletype text 打字機文本
<big>big text 放大字型 </big>
big text 放大字型
<abbr title="abbreviation 英文縮寫">add </abbr>
add
<acronym title="abbreviation 英文縮寫">add </acronym >
add
<u>underlined 底線 </u>
underlined 底線
<ins>inserted 插入 </ins>
inserted 插入
<del>deleted 刪除線 </del>
deleted 刪除線
<s>Strikethrough 刪除 </s>
Strikethrough 刪除
<strike>Strikethrough 刪除</strike>
Strikethrough 刪除
<mark>market 高亮文字</mark>
market 高亮文字
<var>variables 變數</var>
variables 變數
<h3>h1 to h6 Title word 標題字</h3>

h1 to h6 Title word 標題字

#字型樣式 #html font #html 標題字 #html 變數 #html 刪除線 #html 底線

長度單位換算

長度單位換算

長度單位換算

00
Edit #html #script #Javascript #公里 km #米 m #厘米 cm #市丈 #市尺 #市寸 #英碼 #英尺 #英寸 #長度換算 #長度轉換 #長度單位 #長度對換 #尺 #寸 #碼

TradingView

00