如何显示画布的缓慢过渡

How to show a slow transition of a canvas?

本文关键字:缓慢 何显示 显示      更新时间:2023-09-26

我已经在其中编写了一个画布,当我单击链接时,我希望画布缩小到更小的尺寸。我能够使用 onClick 事件实现这一点,但我想显示从大尺寸到小尺寸的缓慢过渡。有人可以提出一些指示吗?

jquery .animate() 函数可以做到这一点:

div.onClick(function(){
 $(this).animate(height:'10px',2000);
});