我正在尝试在 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>