jQuery的animate()方法用于执行元素的动画效果。它接受两个参数:目标样式和动画选项。
{width: '200px', height: '300px', opacity: 0.5}
{
duration: 1000, // 动画持续时间,单位为毫秒
easing: 'linear', // 缓动效果,可选值有:linear、swing等
complete: function() {} // 动画完成后执行的回调函数
}
使用animate()方法的基本语法如下:
$(selector).animate(styles, options);
其中,selector为要执行动画的元素选择器,styles为目标样式,options为动画选项。
示例:
$("div").animate({width: '200px', height: '300px', opacity: 0.5}, {duration: 1000});
这段代码将选择所有的