Hola!!:
Tengo el siguiente código JS:
var MENU_STYLES1 = {
// default item state when it is visible but doesn't have mouse over
'onmouseout': [
'color', ['#FFFFFF', '#000000'],
'background', ['#9A667A', '#DCC5CE'],
'textDecoration', ['none', 'none'],
'fontWeight', ['normal', 'normal'],
],
// state when item has mouse over it
'onmouseover': [
'color', ['#000000', '#000000'],
'background', ['#649A82', '#5AE55A'],
'textDecoration', ['underline', 'none'],
'fontWeight', ['normal', 'normal'],
],
// state when mouse button has been pressed on the item
'onmousedown': [
'color', ['#000000', '#000000'],
'background', ['#649A82', '#5AA7E5'],
'textDecoration', ['underline', 'none'],
'fontWeight', ['normal', 'normal'],
]
};
y me gustaria q el color de fondo de los menús tuvieran un poco de transparencia para q se distinga bien una foto q habrá por detrás, algo asi como efecto ALPHA.
Alguna sugerencia??
GRACIAS