CSS径向渐变到SVG径向渐变

时间:2015-02-03 07:27:49

标签: css svg radial-gradients

是否可以在SVG中创建径向渐变,就像它在CSS http://codepen.io/A973C/pen/hnEaf中一样(我的意思是交通灯中的灯光)

.red{
  background: red;
  background-image: radial-gradient(brown, transparent);
  background-size: 15px 15px; 
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  left: 35px;
  animation: 13s red infinite;
  border: dotted 2px red;
  box-shadow: 
    0 0 20px #111 inset,
    0 0 10px red;
}

我的SVG渐变看起来像http://jsfiddle.net/x9a2Lyx1/ 我真的不明白我怎么能像css例子中那样重复渐变

2 个答案:

答案 0 :(得分:0)

嵌入在网页中的SVG元素与任何其他元素的处理方式相同,因此您只需使用CSS即可:

svg {
  background: green;
  background-image: radial-gradient(lime, transparent);
  background-size: 3px 3px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: dotted 2px lime;
  box-shadow: 
    0 0 20px #111 inset,
    0 0 10px lime;
}
<svg width="120" height="120" 
     xmlns="http://www.w3.org/2000/svg" version="1.1"
     xmlns:xlink="http://www.w3.org/1999/xlink">       
</svg>

答案 1 :(得分:0)

我已经使用SVG模式解决了这个问题 - &gt; http://jsfiddle.net/k5527kym/

<pattern id="muster_c" patternUnits="userSpaceOnUse" width="2" height="2" x="0" y="0">
        <circle cx="1" cy="1" r="2" fill="url(#MyGradient)"/>
</pattern>