我试图在 IE 中重现径向渐变,元素上有背景色,径向不透明度,子元素有另一种颜色。但是元素是圆形的,半透明颜色超出了圆度。四舍五入是用饼图实现的.css,所以它是围绕这些东西的 vml。有什么想法吗?
问问题
42 次
1 回答
1
使用纯 VML 创建圆角元素以及渐变:
<v:group>
<v:rect style='width:120pt;height:80pt' fillcolor="red">
<v:fill type="gradient" />
</v:rect>
<v:group>
<v:rect style='width:120pt;height:80pt' fillcolor="red">
<v:fill method="linear sigma" angle="-45" focus="100%" focusposition=".5,.5" focussize="0,0" type="gradientRadial" />
</v:rect>
</v:group>
</vgroup>
于 2013-09-20T18:53:41.397 回答