limitingConeAngle

**limitingConeAngle** 属性表示聚光灯轴线(即光源与它指向的点之间的轴线)与聚光灯圆锥体之间的角度(以度为单位)。因此,它定义了一个限制圆锥体,该圆锥体限制了光线投射的区域。圆锥体外部不投射任何光线。

您可以将此属性与以下 SVG 元素一起使用

示例

html
<svg viewBox="0 0 480 200" xmlns="http://www.w3.org/2000/svg">
  <filter id="spotLight1" x="0" y="0" width="100%" height="100%">
    <feDiffuseLighting diffuseConstant="2">
      <feSpotLight
        x="10"
        y="10"
        z="50"
        pointsAtX="100"
        pointsAtY="100"
        limitingConeAngle="10" />
    </feDiffuseLighting>
  </filter>
  <filter id="spotLight2" x="0" y="0" width="100%" height="100%">
    <feDiffuseLighting diffuseConstant="2">
      <feSpotLight
        x="10"
        y="10"
        z="50"
        pointsAtX="100"
        pointsAtY="100"
        limitingConeAngle="40" />
    </feDiffuseLighting>
  </filter>

  <rect
    x="0"
    y="0"
    width="200"
    height="200"
    style="filter: url(#spotLight1);" />
  <rect
    x="0"
    y="0"
    width="200"
    height="200"
    style="filter: url(#spotLight2); transform: translateX(220px);" />
</svg>

使用说明

<数字>
默认值 0
可动画

规范

规范
过滤器效果模块级别 1
# element-attrdef-fespotlight-limitingconeangle

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。