CSS - 方位角



描述

方位角 属性描述了声源在聆听者环境水平轴线上的位置。

可能的值

  • 角度
  • 左侧
  • 最左侧
  • 左中
  • 中心
  • 右中
  • 最右侧
  • 右侧
  • 最右侧
  • 中心后

方位角值应如下所示

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> 

它将产生以下结果:

广告