现在,我正在使用 switchClass 来更改正文背景。变化是立竿见影的,对眼睛来说并不容易。
$('.Click').click(function () {
var thisClass = $(this).attr('class');
var st = thisClass.split(' ');
var firstClass = st[0];
if (firstClass == "item1") {
$('.mask').animate({
marginLeft: "-100%"
}, 600, function () {
$("body").switchClass($("body").attr("className"), "bg1");
});
} else if (firstClass == "item2") {
$('.jobsMask').animate({
marginLeft: "-200%"
}, 600, function () {
$("body").switchClass($("body").attr("className"), "bg2");
});
}
});
我如何对此进行动画处理/使其不那么突然?