<fePointLight>

<fePointLight> 滤镜基元定义了一个光源,允许创建点光效果。它可以在照明滤镜基元中使用:<feDiffuseLighting><feSpecularLighting>

使用场景

类别光源元素
允许内容任何数量的以下元素,以任何顺序
<animate>, <set>

属性

DOM 接口

此元素实现 SVGFEPointLightElement 接口。

示例

SVG

html
<svg
  width="200"
  height="200"
  xmlns="http://www.w3.org/2000/svg"
  xmlns:xlink="http://www.w3.org/1999/xlink">
  <defs>
    <filter id="spotlight">
      <feSpecularLighting
        result="spotlight"
        specularConstant="1.5"
        specularExponent="80"
        lighting-color="#FFF">
        <fePointLight x="50" y="50" z="220" />
      </feSpecularLighting>
      <feComposite
        in="SourceGraphic"
        in2="spotlight"
        operator="arithmetic"
        k1="0"
        k2="1"
        k3="1"
        k4="0" />
    </filter>
  </defs>

  <image
    href="mdn_logo_only_color.png"
    x="10%"
    y="10%"
    width="80%"
    height="80%"
    style="filter:url(#spotlight);" />
</svg>

结果

规范

规范
滤镜效果模块级别 1
# fePointLightElement

浏览器兼容性

BCD 表格仅在浏览器中加载

另请参阅