0
我看到涉及移動的paperjs的所有示例都發生在onFrame內部,但是如何在鼠標事件上進行動畫製作?如何爲小動物輸入/離開添加動畫paperjs?
var circle1 = new Shape.Circle(new Point(80, 50), 30);
circle1.strokeColor = 'green';
circle1.fillColor = 'green';
circle1.onMouseEnter = function (event) {
circle1.scale(1.2);
}
這個工作,但它不動畫。
謝謝。我知道,但是這打破了paperjs的框架動畫功能的目的。我相信我可以在任何創建的項目上運行onFrame,而不僅僅是爲了視圖。我仍在試圖看看它是否會起作用。 – gdaniel