10

我有一个非常复杂的、动态创建的 svg 图像,它是使用jQuery SVG创建的。我想创建一个“弹出”区域,显示在画布中所有 svg 元素的顶部。为了创建一个现代的半透明 iOS7 外观,我想对弹出区域下方的所有内容应用模糊过滤器。我希望能够动态设置此弹出区域的 x、y 以及宽度和高度属性。

看看这个例子

<svg width="500" height="500">
    <rect x="10" y="10" height="235" width="235" fill="red" />
    <rect x="255" y="10" height="235" width="235" fill="green" />
    <rect x="10" y="255" height="235" width="235" fill="blue" />
    <rect x="255" y="255" height="235" width="235" fill="yellow" />

    <rect x="50" y="50" height="400" width="400" fill="rgba(255,255,255,0.8)" />
</svg>

在这种情况下,白色区域覆盖的所有内容都应该模糊。然后它应该看起来像这样: 例子

我找到了这个,但这里使用的是静态背景图像,我没有。有什么理由使用 svg、css 和 jQuery 来完成这个效果吗?

4

2 回答 2

11

这种方法怎么样?它使用起来有点困难,但它似乎适用于所有浏览器。

http://jsfiddle.net/J3X4p/2/

<svg x="0px" y="0px" width="500px" height="500px" viewbox="0 0 500 500">
  <defs>
    <filter id="blurry" x="0%" y="0%" height="100%" width="100%" primitiveUnits="userSpaceOnUse">
      <feGaussianBlur x="50" y="50" width="400" height="400" stdDeviation="40" in="SourceGraphic" result="blurSquares"/>
      <feComponentTransfer in="blurSquares" result="opaqueBlur">
        <feFuncA type="linear" intercept="1"/>
      </feComponentTransfer>
      <feBlend mode="normal" in="opaqueBlur" in2="SourceGraphic"/>
    </filter>
  </defs>

  <g id="squares" filter="url(#blurry)">
    <rect x="10" y="10" height="235" width="235" fill="red" />
    <rect x="255" y="10" height="235" width="235" fill="green" />
    <rect x="10" y="255" height="235" width="235" fill="blue" />
    <rect x="255" y="255" height="235" width="235" fill="yellow" />
  </g>

    <rect x="50" y="50" height="400" width="400" fill="rgb(255,255,255)" fill-opacity="0.8" />
</svg>

这比较棘手,因为过滤器应用于背景而不是<rect>. 要使其工作,您必须将xy和从复制width到原语。height<rect>feGaussianBlur

于 2013-10-14T06:51:17.443 回答
3

这只有在单个浏览器(Internet Explorer 10)中使用内联 SVG 才能直接实现,您使用“启用背景”属性并使用内置的“背景图像”源。这是您链接到的教程文本中显示的方法。

如果您的背景完全是图像,则有一种解决方法。您编写了一个过滤器,该过滤器使用 feImage 过滤器拉入背景中的相同图像,对它们进行模糊处理,然后将模糊合成到您想要在顶部显示的任何内容下。这是您链接到的教程的实际代码中使用的方法。

如果您的背景是其他 SVG 内容(文本、路径等),则没有跨浏览器的方式来实现您的效果,因为 Firefox 不支持将 SVG 对象作为 feImage 过滤器原语的输入。如果您不关心 Firefox,那么您可以使用与该教程用于图像的相同解决方法。

这是后者的一个例子 - 它非常接近你想要的,但我只在 Chrome/Windows 中测试过它(我知道它在 Firefox 中不起作用)

<svg x="0px" y="0px" width="500px" height="500px" viewbox="0 0 500 500">
  <defs>
    <filter id="blurry" x="-20%" y="-20%" height="140%" width="140%" primitiveUnits="userSpaceOnUse">
      <feImage x="0" y="0" width="500" height="500" xlink:href="#squares" result="mySquares"/>
      <feGaussianBlur stdDeviation="40" in="mySquares" result="blurSquares"/>
      <feComponentTransfer in="blurSquares" result="morealpha">
        <feFuncA type="linear" intercept=".8"/>
      </feComponentTransfer>
      <feComposite operator="in" in="morealpha" in2="SourceGraphic" result="clipBlur"/>
      <feFlood x="10%" y="10%" width="80%" height="80%" flood-color="white" flood-opacity="0.6" result="whitesquare"/>
      <feBlend mode="screen" in="clipBlur" in2="whitesquare"/>
    </filter>
  </defs>

  <g id="squares">
    <rect x="10" y="10" height="235" width="235" fill="red" />
    <rect x="255" y="10" height="235" width="235" fill="green" />
    <rect x="10" y="255" height="235" width="235" fill="blue" />
    <rect x="255" y="255" height="235" width="235" fill="yellow" />
  </g>

    <rect filter="url(#blurry)" x="50" y="50" height="400" width="400" fill="rgb(255,255,255)" />
</svg>

在此处输入图像描述

更新:最近的发现 - 您可以使用 javascript 将您想要提供给 feImage 的任何内容编码为 svg+xml 编码的数据 URI - 然后跨浏览器工作。超级丑陋。)

于 2013-10-13T19:15:14.593 回答