课程
/前端开发
/jQuery
/jQuery基础(四)—动画篇
.animate( properties, options )这里的options是什么意思?有什么作用?能举个例子吗?
2019-08-13
源自:jQuery基础(四)—动画篇 5-1
正在回答
$('#elem').animate({ width: 'toggle', height: 'toggle' }, {
duration: 5000,
specialEasing: { width: 'linear', height: 'easeOutBounce' },
complete: function() { $(this).after('Animation complete.'); }
});
举报
jQuery基础教程动画篇,讲解jQuery基础开启动画修炼
1 回答这是什么意思?
3 回答这是什么意思
1 回答参数options是指什么?
1 回答fadeOut(option)是什么意思?
1 回答$("p").fadeOut(1000, "linear");中的“linear”是什么意思?有什么作用