大家好!更改css属性不起作用。请帮忙!
$('#container_logo p').hover(
function(){
$(this).animate(
{
text-shadow: "#363535 10px 10px 10px"
},
5000);
},
function(){
$(this).animate(
{
text-shadow: "#363535 1px 1px 1px"
},
5000);
});