Back to Content

azimuth

files/en-us/web/svg/reference/attribute/azimuth/index.md

latest1.2 KB
Original Source

The azimuth attribute specifies the direction angle for the light source on the XY plane (clockwise), in degrees from the x axis.

You can use this attribute with the following SVG elements:

  • {{SVGElement("feDistantLight")}}

Example

css
html,
body,
svg {
  height: 100%;
}
html
<svg viewBox="0 0 440 200" xmlns="http://www.w3.org/2000/svg">
  <filter id="distantLight1">
    <feDiffuseLighting>
      <feDistantLight azimuth="0" />
    </feDiffuseLighting>
  </filter>
  <filter id="distantLight2">
    <feDiffuseLighting>
      <feDistantLight azimuth="240" />
    </feDiffuseLighting>
  </filter>

  <circle cx="100" cy="100" r="80" filter="url(#distantLight1)" />
  <circle cx="340" cy="100" r="80" filter="url(#distantLight2)" />
</svg>

{{EmbedLiveSample("Example", "420", "200")}}

Usage notes

<table class="properties"> <tbody> <tr> <th scope="row">Value</th> <td>{{cssxref("number")}}</td> </tr> <tr> <th scope="row">Default value</th> <td>0</td> </tr> <tr> <th scope="row">Animatable</th> <td>Yes</td> </tr> </tbody> </table>

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}