我想知道是否有办法在raphael中创建模糊。
我有一个谷歌,看着堆栈溢出,但所有的解决方案导致github上的404和/或raphael的过时版本。
有没有人知道目前为raphael添加模糊和阴影的方法?
谢谢!
答案 0 :(得分:0)
这也适用于您:http://raphaeljs.com/reference.html#Element.glow
var paper = new Raphael(document.getElementById('canvas'), 500, 500);
var circle = paper.circle(100, 100, 80);
circle.attr({
fill: "#f00"
});
circle.glow({
offsetx: 2,
offsety: 2
});