0
我想加上我的性格有些視覺效果。 https://i.stack.imgur.com/LPSvT.pngHTML5 canvas:有沒有辦法在圖像上使用多個陰影?
正如你所看到的,它有多個陰影。
我使用下面的代碼:
context.shadowColor = 'rgba(180,0,0,0.6)';
context.shadowOffsetX = -20;
context.shadowOffsetY = 0;
context.shadowBlur = 3;
context.shadowColor = 'rgba(180,0,0,0.6)';
context.shadowOffsetX = -40;
context.shadowOffsetY = 0;
context.shadowBlur = 3;
context.drawImage(img, x, y, width, height, dx, dy, width, height);
,但只有最後則shadowColor作品。 有沒有辦法使用多個陰影與畫布? 我是否正確?如果沒有,實現這一目標的常用方法是什麼? 請,任何幫助,將不勝感激。
非常感謝您對您有幫助的迴應,它爲我的偉大工程! :) – undefined000