Background
I have a pair of functions I want to use to animate some navigation buttons. Basically, I want these buttons to look like buttons -- they have box-shadows enabled. And when the user clicks them, they depress -- which I figure can be shown by eliminating or reducing the box-shadows.
I'm pretty sure the functions are sound and the maps are properly formatted. But jQuery doesn't seem to be changing the box-shadow values. I tested, and it can change font color and background color and even another CSS3 attribute, border-radius:
$(document).ready(function(){
$('div#forward,div#back').mousedown(function(){
$(this).css({
'color' : 'black',
'background' : 'white',
'border-radius' : '15px',
'box-shadow' : '0px 0px 0px #444',
'-moz-box-shadow' : '0px 0px 0px #444',
'-webkit-boxshadow' : '0px 0px 0px #444',
});
});
$('div#forward,div#back').mouseup(function(){
$(this).css({
'color':'white',
'background':'#808080',
'border-radius' : '5px',
'box-shadow' : '1px 3px 6px #444',
'-moz-box-shadow' : '1px 3px 6px #444',
'-webkit-box-shadow' : '1px 3px 6px #444',
});
});
});
Questions
Is there anything wrong with my script?
If not, is there a workaround to get jQuery (or maybe just JavaScript) to manipulate box-shadows?