我正在开发一个插件来进行图像与图像的混合。您可以在以下网址看到它: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 放置了一些无缓存标头: