1

这是我的脚本:

$("#headerimage").animate({marginLeft:"0"},300);

我还想添加“淡入淡出”以同时以完全相同的速度启动。这是怎么做到的?

4

2 回答 2

3

通过动画不透明度:

$("#headerimage").animate({
    marginLeft: 0,
    opacity   : 1
}, 300);

如果它被 display:none 隐藏,请先显示它:

$("#headerimage").css({
    opacity : 0,
    display : 'block' // or whatever
}).animate({
    marginLeft: 0,
    opacity   : 1
}, 300);
于 2013-11-14T18:33:23.807 回答
0
$("#headerimage").animate({
    marginLeft:"0",
    opacity: 1
},300);
于 2013-11-14T18:34:37.047 回答