font
英[fɒnt] 美[fɑ:nt]
n. フォント; フォント; 洗礼堂 (教会内にあり、多くの場合石でできています) ; (同じフォントとサイズ) 一連の書体
複数形: fonts
variant
英[ˈveəriənt] 美[ˈveriənt]
n. (単語など)variant, (character sound) transliteration; [生]variant,variant;変形,variable,transformation; [統一]variant
adj. variation ; 異なる、異なる、一貫性のない、多様な、可変、不確定な
複数形: 異形
JavaScriptのfontVariantプロパティ 構文
関数:テキストを表示するための小大文字のフォントを設定します
構文: Object.style.fontVariant=normal|small-caps
JavaScriptのfontVariantプロパティ 例
<html> <head> <script type="text/javascript"> function setSmallCaps() { document.getElementById("p1").style.fontVariant="small-caps"; } </script> </head> <body> <p id="p1">This is an example paragraph.</p> <p>This is another example paragraph.</p> <input type="button" onclick="setSmallCaps()" value="Display small-caps font" /> </body> </html>
インスタンスの実行 »
[インスタンスの実行] ボタンをクリックしてオンライン インスタンスを表示します