Css-azimuth

提供:Dev Guides
移動先:案内検索

CSS-方位角

説明

_azimuth_プロパティは、リスナーの環境の水平軸に沿った音源の位置を示します。

可能な値

  • 角度
  • 左側
  • 左端
  • left
  • 中央左
  • センター
  • 中央右
  • 右端
  • 右側
  • 右端
  • センターの後ろ

方位角の値は次のように表示されます

azimuth

に適用されます

すべてのHTML要素。

DOM構文

object.style.azimuth = "Any value defined above";

<html>
   <head>
      <style type = "text/css">
         h1 { azimuth: 70deg; }
         h3 { azimuth: behind left; }
         p { azimuth: left; }
      </style>
   </head>

   <body>

      <h1>This is header1 content</h1>
      <h3>This is header3 content</h3>
      <p>This is my paragraph content.</p>

   </body>
</html>

それは次の結果を生成します-