我在WordPress网站上使用watermark.js进行图像保护。
在测试时,我在 img.src = gcanvas.toDataURL(); 中发现错误。我试图找到设置此值的位置,但到目前为止我一直在失败。
这是我正在使用的代码 - 任何人都可以看到出了什么问题吗?
代码
var load = false;
window.onload = function(){
if(!load) {
wmark.init({
/* config goes here */
"position": "top-center", // default "bottom-right"
"opacity": 50, // default 50
"className": "watermark", // default "watermark"
"path": "<?php echo WP_PLUGIN_URL.'/'. dirname(plugin_basename( __FILE__ ));?>/images/watermark.png", // plugindir
});
load = true;
}
}
答案 0 :(得分:0)
最后我研究自己,并最终在这里实施工作解决方案最好不要dom只是删除dom并尝试它应该做一个技巧
<script type="text/javascript">
jQuery('img').each(function($) {
jQuery(this).attr('class','watermark');
});
wmark.init({
/* config goes here */
"position": "top-center", // default "bottom-right"
"opacity": 50, // default 50
"className": "watermark", // default "watermark"
"path": "watermark.png", // plugindir
});
</script>