我正在开发一个插件来与图像进行图像混合。 您可以在以下网址中看到它:http://www.psfinteractive.it/bigoom/try.html 我用两组图像调用插件两次,但渲染的图像是属于第二组的图像。 有什么想法吗?
编辑:实际上在纠正错字后,现在没有任何内容,帮助!
return this.each(function() {
var $this = $(this);
$trioid = 't_'+uniqid();
$trio = $('<div style="display:none" id="'+$trioid+'">');
$('body').append($trio);
$mask = $('<img id="mask"/>');
$centre = $('<img id="centre"/>');
$bg = $('<img id="bg"/>');
$trio.append($mask);
$trio.append($centre);
$trio.append($bg);
$mask.attr('src','');
$centre.attr('src',settings.user);
$bg.attr('src',settings.bckg);
$('#'+$trioid).waitForImages({
finished: function(){
setupScene($this);
}, waitForAll: true
});
});
};
现在部分工作,仅在Firefox中,似乎某种方式不会读取新的组合。有任何想法吗? 我已经通过php和html在文件中放置了一些没有缓存标头: