如何将模糊滤镜应用于移动的文本或对象。例如 - 老虎机游戏中的旋转数字 - http://clip2net.com/s/5Gpemi。
我可以制作动画,但不知道如何进行模糊处理:
var anim = new Kinetic.Animation(function(frame) {
period = period + step;
step = step + 0.01;
for (i=0; i<=cell_count; i++)
{
text[i].setY(amplitude * Math.sin(frame.time * 2 * Math.PI / period) + (field_height - cell_width) + 5);
}
}, layer);