La propiedad canvas shadowOffsetX se usa para establecer o devolver la distancia horizontal de la sombra desde la forma . Esta propiedad tiene un valor positivo o negativo donde un valor positivo indica la sombra a la derecha y un valor negativo indica la sombra a la izquierda.
Sintaxis:
context.shadowOffsetX=number
Valores de propiedad:
- número: Se utiliza para establecer un número positivo o negativo que representa la distancia horizontal de la sombra.
Ejemplo 1:
<!DOCTYPE html> <html> <head> <title> HTML canvas shadowOffsetX Property </title> </head> <body> <canvas id="GFG" width="500" height="300"> </canvas> <script> var x = document.getElementById("GFG"); var contex = x.getContext("2d"); contex.shadowBlur = 20; // set horizontal distance. contex.shadowOffsetX = 40; contex.shadowColor = "blue"; contex.fillStyle = "green"; contex.fillRect(50, 50, 350, 200); contex.stroke(); </script> </body> </html>
Producción:
Ejemplo-2:
<!DOCTYPE html> <html> <head> <title> HTML canvas shadowOffsetX Property </title> </head> <body> <canvas id="GFG" width="500" height="300"> </canvas> <script> var x = document.getElementById("GFG"); var contex = x.getContext("2d"); contex.shadowBlur = 5; contex.shadowOffsetX = 40; contex.shadowColor = "rgb(0, 153, 0)"; contex.fillStyle = "rgb(255, 0, 255)"; contex.fillRect(50, 50, 350, 200); contex.stroke(); </script> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome
- Internet Explorer 9.0
- Firefox
- Safari
- Ópera