XML
In XML configuration effects are set in root cg-item node:
<cg-item id='graphics-000' on-show='fade' on-hide='blur'>
There are 2 types of effects:
Effect - Shadow
Description : Add shadow to the item.
Possible parameters : Enabled: indicate effect implemented to the item. Possible value is ‘Yes’ or ‘No’.
Blur: blur the shadow in pixels.
Alpha: opacity of shadow. Possible value: from 0 (transparent) to 255 (solid).
Color: color of the shadow. See color settings for possible values.
Offset-x: horizontal offset of the shadow from the item in pixels.
Offset-y: vertical offset of the shadow from the item in pixels
Example : <shadow enabled='yes' blur='6' alpha='200' color='Black' offset-x='3' offset-y='3'/>
cg_text_shadow
Effect - Blur
Description : Add blur effect to item.
Possible parameters : Enabled: indicate effect implemented to the item. Possible value is ‘Yes’ or ‘No.
Size-x: amount of horizontal blur in pixels.
Size-y: amount of vertical blur in pixels.
Align: alignment of blur center. Possible values are ‘top-left’, ‘top’, ‘top-right’, ‘center’, ‘right’, ‘bottom-left’, ‘bottom-right’ , ‘bottom’.
Example : <blur enabled='yes' size-x='7' size-y='7' align='center'/>
cg_text_blur
Effect - Glow
Description : Add glow effect to the item.
Possible parameters : Enabled: indicate effect implemented to the item. Possible value is ‘Yes’ or ‘No’.
Size-x: amount of horizontal glow in pixels.
Size-y: amount of vertical glow in pixels.
Value: radius of glow effect.
Blend: blend level for the effect.
Example : <glow enabled='yes' size-x='8' size-y='8' value='3.45' blend='0.80'/>
cg_text_glow
Effect - Motion-blur
Description : Add additional blur effect for the moving items.
Possible parameters : Enabled: indicate effect implemented to the item. Possible value is ‘Yes’ or ‘No’.
Blend: blend level for the effect.
Auto-speed: default value for motion-blurriness.
Speed-x: horizontal speed for blurriness. If ‘0’, auto-speed value is in used.
Speed-y: vertical speed for blurriness. If ‘0’, auto-speed value is in used.
Example : <motion-blur enabled='yes' blend='0.65' auto-speed='2.0' speed-x='2.0' speed-y='2.0'/>
Embim78