我是 jQuery 和 Javascript 的新手。我正在使用 BitStorms 盒子阴影插件,在添加背景颜色和颜色属性之前,它工作正常。我不确定我的语法是否有问题或问题是什么,但这是代码。
$('.menu-btns li a').hover(function() {
$(this).animate({
boxShadow: "inset 0 0 10px #000",
background-color: "#000",
color: "#efefef"
}, "fast");
},
function() {
$(this).animate({
boxShadow: "0 0 0",
background-color: "#fff",
color: "#efefef"
}, "fast");
});
正如代码所示,它不再为框阴影设置动画,也不再为背景颜色或字体颜色设置动画。