HTML

【HTML】コーダーさん必見(Maximally optimizing image loading for the web in 2021)

Maximally optimizing image loading for the web in 2021
https://www.industrialempathy.com/posts/image-optimizations/



Gigazine記事
Googleのエンジニアが「ウェブサイトの画像読み込み」を最適化する方法を解説
https://gigazine.net/news/20210109-optimize-web-image-loading/

|

[AppleScripts]メールリンクを作成する(Windows,LiveMail,コピペ対応)【その2】

その1はこちら

https://force4u.cocolog-nifty.com/skywalker/2016/02/applescriptswin.html


----

メールアドレス用のリンク
mailto

Macや最近のWindows用

LiveMail等のSJISでアドレス部を受け取りたいメーラーで別ければ良いわけです

ブラウザやOS判定は出来ても
デフォルトのメーラーの判定は出来ませんから
そこは
人間がやれば良いって事で リンクを別にしました。


リンクは
1:メール本文に宛先の名前が入るタイプ
2:宛先部に名前や部署が入るタイプ
3:メールアドレスだけのタイプ

4:コピペ用に便利につかえるテキスト

4つ用意しました(やり過ぎか…笑)

------
1:メール本文に宛先の名前が入るタイプ

Force4u_07_392x248

------
2:宛先部に名前や部署が入るタイプ

Force4u_06_317x148


------
3:メールアドレスだけのタイプ

Force4u_02_351x152

------
4:コピペ用に便利につかえるテキスト
この部分はFormのinput textを利用しています

Force4u_01_450


-------------
まずは
エクセルファイルを
タブ区切りテキストで保存します。

Force4u_08_621x448


出来上がったタブ区切りテキストを選択して
実行するだけです。

ソースはこちらから

https://github.com/force4u/TabText2MailLink.scpt


出来上がりのHTMLコードのサンプルはこちら
https://force4u.cocolog-nifty.com/skywalker/files/email_List_sample.html

-------------

(*
TabText2MailLink
タブ区切りテキストからHTMLを生成します。
メールアドレスリンク部を【所属】名前<メールアドレス>の形式で記載し
ユーザーがリンクしたときに、メールアドレス部に氏名が入るようにしています。
WindowsLiveMailS-JISエンコードにも対応しています。

20160206 初回作成
20160207 一部修正 コピー用にテキストエリアを追加

*)



------------------------------------ 始まり
on run
---プロンプトの文言改行が使えます\nを入れます
set theWithPrompt to "タブテキストをメールリンクに変換"
---ファイル選択ダイアログのデフォルトのディレクトリ
tell application "Finder"
---ダイアログの開き先を指定
set theDefaultLocation to (container of (path to me)) as alias
end tell
---Uniform Type Identifier指定
set theFileTypeList to "public.plain-text,com.apple.traditional-mac-plain-text" as text
---のファイルタイプをリスト形式に整形する
---Uniform Type Identifier用に区切り文字をカンマに
set AppleScript's text item delimiters to {","}
---Uniform Type Identifierをリストに格納する
set theFileTypeList to every text item of theFileTypeList
---ダイアログを出して選択されたファイルは「open」に渡す
open (choose file default location theDefaultLocation ¬
with prompt theWithPrompt ¬
of type theFileTypeList ¬
invisibles true ¬
with multiple selections allowed without showing package contents)
end run


on open objOpenDrop
---Openするファイルをエイリアスで取得
set theFileAlias to objOpenDrop as alias
---選択したファイルのUNIXパスを取得
set theUnixPass to POSIX path of theFileAlias as text
---ファイルをUTF8形式で読み込み
set theData to (do shell script "cat '" & theUnixPass & "'") as «class utf8»
---区切り文字をMac改行に変換
set AppleScript's text item delimiters to {"\r"}
---改行毎にリスト形式に格納
set retListVal to (every text item of theData) as list
-----行数カウンタ初期化
set numListLine to count of retListVal
---読み込み開始行を初期化
set numLine to 1 as number
--タブインデックス用のカウンタ初期化
set numTabIndex to 1 as number
---データ格納先を初期化
set theLineData1 to "" as text
set theLineData2 to "" as text
set theLineData3 to "" as text
---HTMLヘッダー
set theHtmlData to "<!-- ここからEmailアドレステーブル -->\r"
---CSSを設定
set theHtmlData to theHtmlData & "<style type=\"text/css\" media=\"screen\">div.bordertable{width: 80%;} .bordertable table , .bordertable th , .bordertable td {font-size: 12px;border: solid 1px #666666;padding: 3px;border-collapse: collapse;overflow: inherit;word-wrap: break-word;} .bordertable th.mailname{font-size: small;text-align: left;} .bordertable a.emailadd{font-family: monospace;font-style: normal;word-break: keep-all;} .bordertable p{font-size: small;text-align: center;} .bordertable input{width: 88px;border-width: 0px;border-style: none;height: auto;width: 60px;padding: 0px;margin: 0px;font-size: small;text-align: right;}</style>" as text
---CSSの反映用のDIVの開始
set theHtmlData to theHtmlData & "<div class=\"bordertable\">\r<form>" as text
set theHtmlData to theHtmlData & "<p>LiveMailを利用している人はWをクリック</p>\r" as text
set theHtmlData to theHtmlData & "<table>" as text
set theHtmlData to theHtmlData & "<caption>メールアドレス一覧|個人情報につき取り扱いには注意しましょう</caption>" as text
---テーブルの見出
set theHtmlData to theHtmlData & "<thead title=\"見出し\"><tr><th>氏名</th><th>所属</th><th colspan=\"3\">メール</th></tr></thead>" as text
---tbody
set theHtmlData to theHtmlData & "<tbody title=\"メールアドレス一覧\">" as text
---繰り返しのはじまり
repeat numListLine times
---最初の行を読み込む
set theDataListLine to (item numLine of retListVal) as text
---区切り文字をタブに指定
set AppleScript's text item delimiters to {"\t"}
---タブ毎にリスト形式で取得
set theDataListLineData to every text item of theDataListLine as list
------ここは使わないけど リストの項目数を取得
set numListLineCnt to (count of theDataListLineData) as number
-------各項目を取得
set theLineData1 to (item 1 of theDataListLineData) as text ---名前
set theLineData2 to (item 2 of theDataListLineData) as text ---所属
set theLineData3 to (item 3 of theDataListLineData) as text ---メール
---項目3をメールアドレスとする
set theOrgEmail to theLineData3 as text
---リンク用の名前を設定(所属+名前+さん)
set theLinkName to ("" & theLineData2 & "" & theLineData1 & "さん") as text
---inputエリア用のテキストを定義
set theInputText to ("" & theLineData2 & "" & theLineData1 & "さん&lt;" & theOrgEmail & "&gt;") as text

---///Macと最近のWindows用にURLエンコード
set theLinkNameMac to my doUrlEncode(theLinkName) as text
---URLエンコードのスペース表記+を取る
set theLinkNameMac to my doReplace(theLinkNameMac, "+", "") as text
---最初と最後の<>
set theLinkNameMac to (theLinkNameMac & "%3C" & theOrgEmail & "%3E") as text

---///WindowsLiveMai用のSJISエンコード
set theLinkNameWin to my doSJISencode(theLinkName) as text
---最初と最後の<>
set theLinkNameWin to (theLinkNameWin & "%3C" & theOrgEmail & "%3E") as text

---///body入りのリンク作成
set theLinkBodyName to ("TO:\r" & theLineData2 & "" & theLineData1 & "さん") as text
---Macと最近のWindows用にURLエンコード
set theLinkBodyNameMac to my doUrlEncode(theLinkBodyName) as text

---HTMLにする
set theHtmlData to theHtmlData & "<tr>\r" as text
set theHtmlData to theHtmlData & "<th title=\"" & theLineData1 & "さんのメールアドレスリンク\" class=\"mailname\">" as text
set theHtmlData to (theHtmlData & "<a rel=\"nofollow\" href=\"mailto:" & theLinkNameMac & "?body=" & theLinkBodyNameMac & "\" tabindex=\"" & (numTabIndex) as text) & "\" title=\"" & theLineData1 & "さんの名前をメール本文に入れます\" target=\"_blank\">" & theLineData1 & "</a></th>" as text
set theHtmlData to theHtmlData & "<td title=\"所属\">" & theLineData2 & "</td>" as text
set theHtmlData to theHtmlData & "<td title=\"所属+名前形式のメールリンク\">&nbsp;" as text
set theHtmlData to (theHtmlData & "<a rel=\"nofollow\" href=\"mailto:" & theLinkNameMac & "\" title=\"所属+" & theLineData1 & "さん+メールアドレス。\" tabindex=\"" & (numTabIndex + 1) as text) & "\" target=\"_blank\">M</a>" as text
set theHtmlData to theHtmlData & "&nbsp;|&nbsp;" as text
set theHtmlData to (theHtmlData & "<a rel=\"nofollow\" href=\"mailto:" & theLinkNameWin & "\" title=\"所属+" & theLineData1 & "さん+メールアドレス。WindowsLiveメールを利用している方はこちらをクリック\" tabindex=\"" & (numTabIndex + 2) as text) & "\" target=\"_blank\">W</a>" as text
set theHtmlData to theHtmlData & "&nbsp;</td>" as text
set theHtmlData to theHtmlData & "<td title=\"メールアドレスだけのリンク\">" as text
set theHtmlData to (theHtmlData & "<a rel=\"nofollow\" href=\"mailto:" & theOrgEmail & "\" title=\"" & theOrgEmail & "\" tabindex=\"" & (numTabIndex + 3) as text) & "\" class=\"emailadd\" target=\"_blank\">" & theOrgEmail & "</a></td>" as text
set theHtmlData to theHtmlData & "<td title=\"コピペ用のテキストエリア\">" as text
set theHtmlData to (theHtmlData & "<input type=\"Text\" name=\"emailtext\" value=\"" & theInputText & "\" tabindex=\"" & (numTabIndex + 4) as text) & "\" onclick=\"this.select(0,this.value.length)\">" as text
set theHtmlData to theHtmlData & "</td>" as text
set theHtmlData to theHtmlData & "\r</tr>\r" as text
---カウントアップ
set numLine to numLine + 1 as number
set numTabIndex to numTabIndex + 5 as number
---データ初期化
set theLineData1 to "" as text
set theLineData2 to "" as text
set theLineData3 to "" as text
--リピートの終わり
end repeat
---HTMLのフッター処理

set theHtmlData to theHtmlData & "</tbody>\r"
set theHtmlData to theHtmlData & "</table>\r</form>\r</div>\r"
set theHtmlData to theHtmlData & "<!-- ここまでEmailアドレステーブル -->\r"
---結果をテキストエディタに表示する
tell application "TextEdit" to launch
tell application "TextEdit"
make new document with properties {text:theHtmlData}
end tell
tell application "TextEdit" to activate

end open

--------//Mac用リンクエンコードサブルーチン
on doUrlEncode(str)
set scpt to "php -r 'echo urlencode(\"" & str & "\");'"
return do shell script scpt
end doUrlEncode


--------//Windows用リンクエンコードサブルーチン
on doSJISencode(str)
set scpt to ("php -r 'echo urlencode(mb_convert_encoding(\"" & str & "\"" & ",\"SJIS\", \"auto\"));'") as text
return do shell script scpt
end doSJISencode



--------//文字の置き換えのサブルーチン
to doReplace(theText, orgStr, newStr)
set oldDelim to AppleScript's text item delimiters
set AppleScript's text item delimiters to orgStr
set tmpList to every text item of theText
set AppleScript's text item delimiters to newStr
set tmpStr to tmpList as text
set AppleScript's text item delimiters to oldDelim
return tmpStr
end doReplace

-------------

ソースとエクセルファイル等の詰め合わせは以下から

「TabText2MailLink.zip」をダウンロード

|

[AppleScripts]メールリンクを作成する(Windows,LiveMail,コピペ対応)【その1】

盛り込みすぎた…苦笑

タブ区切りテキストをHTMLに変換します。


エクセルで作った、こんな風な
メールアドレスリストを

Force4u_09_448x318

こんな感じのHTMLに変換します。

Force4u_01_450x518

-------------

クリックする場所によって
結果が異なるようにしています。

-------------

毎年、どこかの部署で『メールの誤送信』って発生しちゃいます。
気をつけている、(技術的に自信の無いといっても良い?)熟年層より
若い人の方が、誤送信は多いです。
(まぁ若さゆえ…の部分と、ちゃんと教わっていない事からでしょうか)

そこで
メールアドレスの部分を
こんな感じから

Force4u_04_657x231

こんな風にする事で
『気付き』を呼ぶようにします。

Force4u_03_685x227

アドレスブックに登録する場合にも
有効ですので、ジワジワっと効く感じでしょうか?


ここで問題になるのが『Windows』と『LiveMail』です。

Force4u_10_569x387

Force4u_11_517x463

上記のようになってしまうのは
『S-JIS』エンコードで受け取る仕様になっているからです。

そこでPHPをつかってエンコードを別にしたリンクを作成します
サブルーチンはこんな感じ


--------//Mac用リンクエンコードサブルーチン
on doUrlEncode(str)
set scpt to "php -r 'echo urlencode(\"" & str & "\");'"
return do shell script scpt
end doUrlEncode


--------//Windows用リンクエンコードサブルーチン
on doSJISencode(str)
set scpt to ("php -r 'echo urlencode(mb_convert_encoding(\"" & str & "\"" & ",\"SJIS\", \"auto\"));'") as text
return do shell script scpt
end doSJISencode

続く
その2はこちら
https://force4u.cocolog-nifty.com/skywalker/2016/02/applescriptsw-1.html

|

[Favicon]faviconの記述 2014夏版 apple-touch-icon

こちらの記事[Favicon]faviconの記述(いまさらだけど)【apple-touch-icon-precomposed】の更新版


Icon001


<!--[if IE]>

<link rel="shortcut icon" href="favicon.ico"/>

<![endif]-->


<link rel="apple-touch-icon-precomposed" type="image/x-icon" sizes="57x57" href="/XXXXXXXXXX/apple-touch-icon-57x57-precomposed.png" />

<link rel="apple-touch-icon-precomposed" type="image/x-icon" sizes="58x58" href="/XXXXXXXXXX/apple-touch-icon-58x58-precomposed.png" />

<link rel="apple-touch-icon-precomposed" type="image/x-icon" sizes="60x60" href="/XXXXXXXXXX/apple-touch-icon-60x60-precomposed.png" />

<link rel="apple-touch-icon-precomposed" type="image/x-icon" sizes="72x72" href="/XXXXXXXXXX/apple-touch-icon-72x72-precomposed.png" />

<link rel="apple-touch-icon-precomposed" type="image/x-icon" sizes="76x76" href="/XXXXXXXXXX/apple-touch-icon-76x76-precomposed.png" />

<link rel="apple-touch-icon-precomposed" type="image/x-icon" sizes="114x114" href="/XXXXXXXXXX/apple-touch-icon-114x114-precomposed.png" />

<link rel="apple-touch-icon-precomposed" type="image/x-icon" sizes="120x120" href="/XXXXXXXXXX/apple-touch-icon-120x120-precomposed.png" />

<link rel="apple-touch-icon-precomposed" type="image/x-icon" sizes="144x144" href="/XXXXXXXXXX/apple-touch-icon-144x144-precomposed.png" />

<link rel="apple-touch-icon-precomposed" type="image/x-icon" sizes="152x152" href="/XXXXXXXXXX/apple-touch-icon-152x152-precomposed.png" />

<link rel="apple-touch-icon-precomposed" type="image/x-icon" sizes="256x256" href="/XXXXXXXXXX/apple-touch-icon-256x256-precomposed.png" />

<link rel="apple-touch-icon-precomposed" type="image/x-icon" sizes="512x512" href="/XXXXXXXXXX/apple-touch-icon-512x512-precomposed.png" />

|

[Favicon]faviconの記述 2013夏版 apple-touch-icon

こちらの記事[Favicon]faviconの記述(いまさらだけど)【apple-touch-icon-precomposed】の更新版


■apple-touch-icon
これは57x57サイズを記載する
<link rel=apple-touch-icon type=image/x-icon href=/apple-touch-icon-57x57.png>

■apple-touch-icon-precomposed
最近では
57x57
72x72
114x114
144x144 の
4種類を並記するのがフルサポート

<link rel=apple-touch-icon-precomposed type=image/x-icon sizes=57x57 href=/apple-touch-icon-57x57-precomposed.png>
<link rel=apple-touch-icon-precomposed type=image/x-icon sizes=72x72 href=/apple-touch-icon-72x72-precomposed.png>
<link rel=apple-touch-icon-precomposed type=image/x-icon sizes=114x114 href=/apple-touch-icon-114x114-precomposed.png>
<link rel=apple-touch-icon-precomposed type=image/x-icon sizes=144x144 href=/apple-touch-icon-144x144-precomposed.png>

「favicon.txt」をダウンロード

もう、いっその事
57x3の171

72x3の219

57x4の228

72x4の288
をつくっておいても良いかもね…笑


|

[HTML5]これは凄い

Flash無しでも結構いけてる
Force4u00221119_34318


20 Things I Learned About Browsers and the Webアイコン:新しいウィンドで開きます

| | コメント (0) | トラックバック (0)

HTML5: Canvas

Image00221230_41630


HTML5: Canvas: Quadratic and Bezier Curves // Think Vitamin Membershipアイコン:新しいウィンドで開きます

| | コメント (0) | トラックバック (0)

[if IE] Conditional Comments (CC)

Cc001


Conditional comments of IEConditional comments of IE:新しいウィンドで開きます



Operators support
Operator syntaxDescriptionDescription
!The "not" operator. 〜ではない
ltThe "less than" operator. 〜未満
lteThe "less than or equal to" operator. 〜以下(値含)
gtThe "greater than" operator. 〜超
gteThe "greater than or equal to" operator 〜以上(値含)

| | コメント (0) | トラックバック (0)

[Adobe]HTML5 Video Player (For Adobe Dreamweaver)

Image00230121_182938


Adobe announces the HTML5 Video Player widget « Adobe Dreamweaver Team Blogアイコン:新しいウィンドで開きます

| | コメント (0) | トラックバック (0)

videojs スキン

スキンを試してみた
まだ ブラウザの互換等の問題があるのでHTML5でビデオ再生には手間がかかる
skins
Skins | VideoJSアイコン:新しいウィンドで開きます

問題はブラウザがmp4に対応しているか?になります。
オペラ ファイヤーフォックス3.6x が OGG 
これがHTML5のメディア再生の問題やね


以下のサンプル



「nomal.html.txt」をダウンロード



「vim.html.txt」をダウンロード



「tube.html.txt」をダウンロード



「hu.html.txt」をダウンロード

Caminoは(まぁマイナーなブラウザですが)
SWFプレイヤーが必須
Image00230118_73231

| | コメント (0) | トラックバック (0)

その他のカテゴリー

Accessibility AccessibilityCheck AccessibilityForm AccessibilityInDesign AccessibilityPDF Acrobat Acrobat Action Acrobat Annotation Acrobat AppleScripts Acrobat Character Acrobat Layer Acrobat PDF Embed API Acrobat PDF Form Print Acrobat Plug-ins Acrobat Portfolios Acrobat Print AcrobatBarcode AcrobatDialog AcrobatForm AcrobatJS AcrobatMenu AcrobatPDF AcrobatStamp AcrobatYouTube AddressBook Adobe Adobe InDesign Adobe Photoshop AdobeAppleScript AdobeBridge AdobeIllustrator AdobeJSX aed Alfresco Android AnimationGif Apple Apple Support AppleScript AppleScriptBasics AppleScriptCharacter AppleScriptColor AppleScriptDroplet AppleScriptErrorNum AppleScriptFolder AppleScriptFontBook AppleScriptRename AppleScriptTools AppleSymbols Applications Barcode Barcode2D BarcodePostal BetterHTMLExport Book BOX Browser buzz Certificates CharacterEntity CharacterSets Colors Cool Site CSS Cutting DecoMail DecorationMail Design Desktop Diff DJ dmg DNS Documents Download DTP eBook Editer eMail Envelopes ExifTool Facebook FFmpeg File System Fonts FontsTool FontsWeb FOOD FormPrint ftp Gadget Gif Animation Google Google Chrome Enterprise HexEditor HTML info iPhoto ISBN ISO iTunes iWork iWorkNumbers iWorkNumbersCalendar iWorkNumbersTimecard iWorkPages JavaScript JeditX JeditX Regexp JeditXAppleScript JIS jquery Letterpress Library logo Mac Admin Mac Archiver Mac Browser Mac Browser Plugin Mac QuickLook Mac Setup Mac Spotlight Mac Video Map Memo Microsoft Teams Mobby mobileconfig Moto Movies Music Network Basic ntp OCR Office OfficePowerPoint OSX Paint Pantone Paper PDFlib Permission Photo Pictograms Print Public Python QuickLook QuickTime QuickTimeSetting QuickTimeSound Real Media ReName ResourceFork ruby Sample Screen ScreenCast Search Security SEO Sharing SLAResource Sound Spotlight Stamp SWF TCC.db Tutorial PSD TV Twitter Typography Unicode Utilities Video WEB APP WebFont Wedding Windows WindowsMedia XML XMP XPS YouTube YouTube Rss