Reference
HTML5Rockshttp://www.html5rocks.com/
HTML5Rocks - Tutorials
http://www.html5rocks.com/tutorials/
HTML5 presentation
http://slides.html5rocks.com/
<object
classid="clsid:25336920-03F9-11CF-8FD0-00AA00686F13"
data="some.html">
<p>backup content</p>
</object>
<object
type="text/html"
data="some.html">
<p>backup content</p>
</object>
...
<body style="border:0;overflow:visible">
...
pre.code {
font-family: monospace;
white-space:pre;
overflow:scroll;
}
" html escape function
:function HtmlEscape()
silent s/&/\&/eg
silent s/ silent s/>/\>/eg
:endfunction
:call HtmlEscape()
<meta http-equiv="Imagetoolbar" content="no" />
<img src="path/to/image.gif" alt="サンプル" galleryimg="no" />
var myrules = {
'.popup' : function(el){
var href = el.getAttribute('href');
if (href){
el.onclick = function(){ window.open(href); return false;}
el.onkeypress = function(){ window.open(href); return false;}
}
}
};
Behaviour.register(myrules);
<script type="text/javascript" src="behaviour.js"></script>
<a href="index.html">Normal</a>
<a class="popup" href="index.html">Pop up</a>
<object
id="Player"
width="480"
height="360"
classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"
type="application/x-oleobject"
>
<param name="autoStart" value="True">
<param name="URL" value="path/to/file.asx">
<embed
width="480"
height="360"
type="application/x-mplayer2"
src="pato/to/file.asx"
pluginspage="http://www.microsoft.com/isapi/redir.dll?prd=windows&sbp=mediaplayer&ar=media&sba=plugin"
name="mediaplayer"
showcontrols="1"
autostart="1"
showstatusbar="0"
showdisplay="0"
>
</embed>
</object>
<object
data="path/to/file"
type="application/x-mplayer2"
width="300"
height="200"
>
<param name="src" value="path/to/file" />
<param name="autostart" value="true" />
</object>
<link rel="alternate" media="handheld" type="text/html" href="{mobile URL}" />
<link rel="alternate" x:media="handheld" type="text/html" href="{mobile URL}" />
<rss xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:link rel="alternate" media="handheld" type="text/html" href="{mobile URL}" />
<object classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95" id="MediaPlayer">
<param name="Filename" value="URL">
<param name="AutoStart" value="自動スタート true | false">
<param name="AutoRewind" value="自動巻き戻し true | false">
<param name="PlayCount" value="再生回数 0で無限">
<param name="AutoRewind" value="自動巻き戻し true | false">
<param name="Volume" value="音量 -10000~0">
<param name="Balance" value="左右の音量バランス -10000>0<10000">
<param name="ShowControls" value="全てのコントロールバー true | false">
<param name="ShowAudioControls" value="音量コントロールバー true | false">
<param name="ShowDisplay" value="タイトル・著作権 true | false">
<param name="ShowGotoBar" value="関連リンクバー true | false">
<param name="ShowPositionControls" value="早送り・巻き戻しバー true | false">
<param name="ShowStatusBar" value="ステータスバー true | false">
<param name="ShowTracker" value="再生位置バー true | false">
< | < | 左大不等号 |
> | > | 右大不等号 |
& | & | アンパサンド,アンド |
' | ' | アポストロフィ |
" | " | ダブルクォート |
` ' | | 半角スペース |
<a href="example.pdf#page=3">3ページ目を表示</a>
<embed
src="test.pdf"
width="60%"
height="80%"
/>
<object
classid="clsid:CA8A9780-280D-11CF-A24D-444553540000"
width="60%"
height="80%"
id="Pdf1"
>
<param name="SRC" value="test.pdf" />
</object>