shadowColor  ( n -- )

publication: 6 avril 2023 / mis Ă  jour 6 avril 2023

Read this page in english

 

vocabulaire: web

DĂ©finit la couleur de l'ombre.

Exemple:

web definitions 
\ shadow Color 
JSWORD: shadowColor { c } 
    function HexDig(n) {  
        return ('0' + n.toString(16)).slice(-2);  
    }  
    context.ctx.shadowColor = '#' + HexDig((c >> 16) & 0xff) +  
        HexDig((c >> 8) & 0xff) + HexDig(c & 0xff); 
~ 
forth definitions 

Legal: site web personnel sans commerce / personal site without seling