IE9 上基于 JavaScript 的 SVG 渐变操作

标签 javascript svg

我有一个 SVG 文件,它指定了一个渐变和一个圆圈,如下所示。嵌入式脚本切换渐变的方向 onClick(),它适用于除 IE9 以外的所有当前浏览器。我怀疑 IE 不会重绘渐变。我尝试了一些方法,例如首先将填充设置为纯色,然后重新分配(更改的)渐变,以触发重绘但到目前为止没有骰子。我的问题是,任何人都可以解决这个问题,或者更好地解决它。谢谢。

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" height="70" width="190">
<script type="text/javascript">
  <![CDATA[
    function flipGrad(evt) {
      var g=document.getElementById('grad1');
      var y1 = g.getAttribute('y1');
      var y2 = g.getAttribute('y2');
      g.setAttribute('y2', y1);
      g.setAttribute('y1', y2);
    }
   ]]>
  </script>
  <defs>
    <linearGradient id="grad1" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(255,0,0);stop-opacity:1" />
    </linearGradient>
  </defs>
  <circle cx="30" cy="30" r="20" stroke="black" stroke-width="2" fill="url(#grad1)" onclick="flipGrad(evt)" />
</svg>

编辑:

编辑停靠点会有所帮助,这样可能会变得可行。事实是,我的实际文件看起来更像下面这样,它是 Inkscape svg 输出,其中渐变分为颜色部分和几何部分,只有几何链接到 from 和 object,但颜色在多个其他渐变中重复使用。交换停止点的方法会影响链接到该颜色渐变的所有对象:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" height="70" width="190">
<script type="text/javascript">
  <![CDATA[
    function flipGrad(evt) {
      // var g=document.getElementById('gradGeometry');
      // var y1 = g.getAttribute('y1');
      // var y2 = g.getAttribute('y2');
      // g.setAttribute('y2', y1);
      // g.setAttribute('y1', y2);\
      var s1=document.getElementById('stop1');
      var s2=document.getElementById('stop2');
      var s1s = s1.getAttribute('style');
      var s2s = s2.getAttribute('style');
      s1.setAttribute('style', s2s);
      s2.setAttribute('style', s1s);
    }
   ]]>
  </script>
  <defs>
    <linearGradient id="gradColour">
      <stop id="stop1" offset="0%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
      <stop id="stop2" offset="100%" style="stop-color:rgb(255,0,0);stop-opacity:1" />
    </linearGradient>
    <linearGradient id="gradGeometry1" x1="0%" y1="0%" x2="0%" y2="100%" xlink:href="#gradColour" />
    <linearGradient id="gradGeometry2" x1="0%" y1="0%" x2="100%" y2="0%" xlink:href="#gradColour" />
  </defs>
  <circle cx="30" cy="30" r="20" stroke="black" stroke-width="2" fill="url(#gradGeometry1)" onclick="flipGrad(evt)" />
  <circle cx="90" cy="30" r="20" stroke="black" stroke-width="2" fill="url(#gradGeometry2)" onclick="flipGrad(evt)" />
</svg>

最佳答案

在 IE9 上测试了一下后,似乎梯度向量一旦在 IE 中定义是不可变的。您唯一的选择是使用可变的 id 渐变停止点。

<svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" height="70" width="190">
<script type="text/javascript">
  <![CDATA[
    function flipGrad(evt) { 
      var s1=document.getElementById('stop1');
      var s2=document.getElementById('stop2');
      var s1s = s1.getAttribute('style');
      var s2s = s2.getAttribute('style');
      s1.setAttribute('style', s2s);
      s2.setAttribute('style', s1s);
    }
   ]]>
  </script>
  <defs>
      <linearGradient id="grad1" x1="0%" y1="0%" x2="0%" y2="100%">
        <stop id="stop1" offset="0%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
        <stop id="stop2" offset="100%" style="stop-color:rgb(255,0,0);stop-opacity:1" />
    </linearGradient>
  </defs>

  <circle id="bubble" cx="30" cy="30" r="20" stroke="black" stroke-width="2" fill="url(#grad1)" onclick="flipGrad(evt)" />
</svg>

关于IE9 上基于 JavaScript 的 SVG 渐变操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8083426/

相关文章:

javascript - 带 typescript 的 Protractor 中的下拉菜单

css - D3 svg css - 使用 css 围绕中心旋转线

html - SVG绝对定位

css - 如何将SVG中的foreignObject元素带到顶层?

c# - 如何使用 svg .net 添加蒙版?

javascript - 自定义音频播放器问题

javascript - 为什么滚动时我的网站在 Chrome 中显示滞后?

javascript - SVG 图像未在 onclick 事件中传递给函数

javascript - 如何使用 Jade 将 id 添加到下划线模板

javascript - 如何从其子元素访问 iframe 元素