我正在尝试在Tumblr主题上实现一个图像处理库,例如Caman.js,但它不起作用。我见过这样的例子:https://gist.github.com/dashr/3592432#file-tumblr-caman-bfly-xing-js 这让我觉得有可能做到。
我在我的网站上托管了图书馆并将其包含在主题html中,但是有没有一种特定的方法将这个图书馆包含在Tumblr中?
我想对每个帖子中的每个图片应用相同的更改。 这段代码没有做任何事情......
<script type="text/javascript">
$(document).ready(function(){
$('#right').children('.post').each(function() {
Caman( this, function () {
this.greyscale();
});
this.render();
});
});
});
</script>