I have set image property in Kineticjs
var img= new Image()
img.style.cssText = 'box-shadow: 10px 10px 5px #888888;'
img.src = srclink[0];
var tool=new Kinetic.Image({
x: 0,
y: 0,
image: img,
width: size[0],
height: size[1],
name: val["name"],
id:val["cat"],
})
all will work except the style because I hope the image will have the shadow
I hope you can help me, thanks.