1

如何使用右侧的幻灯片效果为宽度设置动画?

这是我的代码:

$(".toggle").click(function(){
  $(".wrapper").animate({ width: "80%" });
});

谢谢!

4

2 回答 2

1

你可以这样做:

$(".toggle").click(function () {
    $(".wrapper").animate({
        width: "80%"
    }, {
        duration: 1000,
        specialEasing: {
            width: 'linear'
        }
    });
});

小提琴演示

于 2013-06-15T09:01:41.477 回答
0
$("#go").click(function(){
  $("#block").animate({
  width: "70%"
  }, 1500 );
});
于 2013-06-15T08:59:31.560 回答