CSS - azimut
Descrizione
La proprietà azimut descrive la posizione di una sorgente sonora lungo l'asse orizzontale dell'ambiente dell'ascoltatore.
Possibili valori
- angle
- left-side
- far-left
- left
- center-left
- center
- center-right
- right
- far-right
- right-side
- far-right
- dietro il centro
I valori azimutali dovrebbero essere visualizzati come segue
Si applica a
Tutti gli elementi HTML.
Sintassi DOM
object.style.azimuth = "Any value defined above";
Esempio
<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>
Produrrà il seguente risultato: