Descrição
A propriedade azimuth descreve a posição de uma fonte de som ao longo do eixo horizontal do ambiente do ouvinte.
Valores possíveis
- angle
- left-side
- far-left
- left
- center-left
- center
- center-right
- right
- far-right
- right-side
- far-right
- atrás do centro
Os valores de azimute devem ser mostrados da seguinte forma
Aplica-se a
Todos os elementos HTML.
Sintaxe DOM
object.style.azimuth = "Any value defined above";
Exemplo
<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>
Isso produzirá o seguinte resultado -