我在 Jquery 中使用 .animate 函数。我有一个使用 marginLeft 滑动的 div,但我也需要它淡入,但我需要它比 marginLeft 效果慢。使用 .animate,我似乎只能应用一个速度参数。
<script type="text/javascript">
$(document).ready(function(){
$(".topFrameAnim").css("opacity", "0.0");
$(".topFrameAnim").animate({
marginLeft: "0",
}, 500 );
$(".topFrameAnim").animate({
opacity: "1",
}, 1000 ); // Need this effect to be applied at the same time, at a different speed.
});
</script>