CamanJS 网站 ( http://camanjs.com/guides/#BasicUsage ) 上的示例如下所示:
Caman("#canvas-id", "path/to/image.jpg", function () {
// manipulate image here
this.brightness(5).render();
});
我尝试使用我自己的一张图片在 JSBin ( http://jsbin.com/uGUPOFo/3/edit?html,js,output )上运行这个非常基本的示例
Caman("#cv", "http://preemiestoday.noahpeters.com/images/feature.png", function () {
this.brightness(5).render();
});
但它什么也没做。有谁知道我错过了什么?文档说它可以“在 jQuery、YUI、Scriptaculous、MooTools 等旁边运行”。我不想使用其中的任何一个,尽管我尝试加载最新的 1.x jQuery 无效。