有没有办法在Polymer上使用Justified Gallery或其他类似的插件?
我尝试使用它但由于模板而无法找到图像。 我的聚合物元素:
<div id="gallery">
<template repeat="{{post in posts}}">
<a href="{{post.image}}" title="{{post.title}}">
<img alt="{{post.title}}" src="{{post.image}}" />
</a>
</template>
</div>
<script>
Polymer({
domReady: function() {
$(this.$.gallery).justifiedGallery();
}
});
</script>