我想在我的画布中有可放置的区域,人们可以在其中拖动图像,并且我想在可放置区域周围添加发光的脉冲效果,这样人们就可以很容易地找出可以拖动对象的位置。
我发现HTML5 canvas 之类的东西可以创建形状的外发光效果,但它不像脉冲那样具有动画效果。
比如这个矩形:
var stage = new Kinetic.Stage({
container: 'container',
width: 578,
height: 200
});
var layer = new Kinetic.Layer();
var rect = new Kinetic.Rect({
x: 239,
y: 75,
width: 100,
height: 50,
fill: 'white',
stroke: 'black',
strokeWidth: 4
});
// add the shape to the layer
layer.add(rect);
// add the layer to the stage
stage.add(layer);
但不是那种黑色,我想要一个脉动的金色笔触。
想法?