在 Edge 动画之外,我在这里尝试做两件事。
现场 3个男孩处于闲置状态。
行动
- 点击任何一个男孩。
- 用“闭合”的嘴巴 PNG 替换“张开的”嘴巴 PNG。
我试图在我的 HTML 页面中使用 jQuery 绑定每个字符
$(this).on('click', function (){
//Close the mouth
});
我使用的代码来自文档(关于如何通过 jQuery 访问动画实例的描述有限)。
var comp = AdobeEdge.getComposition("act0_introduction");
var stage = comp.getStage();
console.log("Stage: "+stage);
通过 Chrome 收到的错误是:
Uncaught TypeError: Object #<Object> has no method 'getComposition'