Hochwertiger HTML5 und Javascript Code von dem Designbüro Standardabweichung aus München

HTML5 Canvas - Context 2D - Shadows

Das HTML5 und Javascript Bild von Standardabweichung aus München

Shadows

Hinzufügen eines Schatten auf beliebige Formen innerhalb des HTML5 Canvas Elements.

//Initialisierung context.fillStyle = '#FF0000'; context.shadowColor = '#0000FF'; context.shadowBlur = 50; context.shadowOffsetX = 25; context.shadowOffsetY = 25; context.beginPath(); context.rect(100, 100, 200, 200); //rect(x,y,width,height); context.fill(); //Fülle Rechteck mit den in fillStyle definierten Eigenschaften //Zurücksetzen des Schattens context.shadowColor = 'transparent'; context.shadowBlur = 0; context.shadowOffsetX = 0; context.shadowOffsetY = 0;

HTML5 / Javascript Code Teilen

Javascript Snippet auf Facebook teilen  Facebook
Javascript Snippet auf Facebook teilen  Google+