我在我正在实现的网站上使用pixastic(http://www.pixastic.com/lib/docs/actions/blend/)并且需要使用JQuery循环通过具有共享类的图像集合并将混合代码应用于每个图像。
pixastic网站上的示例代码对我来说没有多大意义(看起来它正在创建一个新图像)任何帮助都会非常感激。
var img = new Image();
img.onload = function() {
var blendImg = new Image();
blendImg.onload = function() {
Pixastic.process(img, "blend",
{
amount : 1,
mode : "multiply",
image : blendImg
}
);
}
blendImg.src = "blendimage.jpg";
}
img.src = "myimage.jpg";
答案 0 :(得分:1)
这里有一种黑暗的射击,但这有效吗?
$("img.yourClass").each(function() {
Pixastic.process($(this).get(0), "blend", {
amount: 1,
mode: "multiply",
image: [imageToBlendItWith]
});
});