UNPKG
test-gcanvas-node
Version:
latest (1.0.1)
1.0.1
1.0.0
gcanvas for node developer
test-gcanvas-node
/
core
/
test
/
benchmarks
/
shaow
/
tc_2d_shadowOffsetX.js
8 lines
(7 loc)
•
188 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
// Shadow
ctx.shadowColor =
'red'
; ctx.shadowOffsetX =
25
*ratio; ctx.shadowBlur =
10
*ratio;
// Rectangle
ctx.fillStyle =
'blue'
; ctx.fillRect(
20
*ratio,
20
*ratio,
150
*ratio,
100
*ratio);