how to add shadow or border (or both) to the font

Answered
0
0

Hi,

How to add shadow or border (or both) to the font?

  • You must to post comments
Best Answer
0
0

Use the Theme Builder to set the Text Shadow css for a font.

See screenshots attached.

 

Attachment
  • You must to post comments
0
0

Hi mgmst,

for that you can use Wisej.ThemeBuilder for build shadow

This is one sample code.

"label-shadow": {
"text": "TextLabel",
"states": {
"default": {
"styles": {
"width": 0,
"color": "tabSelected",
"shadowBlurRadius": 10,
"shadowLength": [ 10, 10 ],
"shadowColor": "#333"
},
"properties": {
"opacity": 1
}
},
"disabled": {
"properties": {
"opacity": 0.5
}
},
"borderSolid": {
"styles": {
"width": 1,
"style": "solid"
}
},
"borderDashed": {
"styles": {
"width": 1,
"style": "dashed"
}
},
"borderDotted": {
"styles": {
"width": 1,
"style": "dotted"
}
},
"borderDouble": {
"styles": {
"width": 3,
"style": "double"
}
}
}
}

Best,

Kevin(ITG)

  • You must to post comments
Showing 2 results
Your Answer

Please first to submit.