我每次使用Percolate:Momentum在meteor中更新post.text时都试图制作动画(我尝试过其他插件,但这些插件也不起作用)。 post.text更新很好,但它没有动画 - 不确定我做错了什么:S
JS
Template.textDisplay.helpers({
post: function () {
return MongoDatabase.findOne({}, { sort: { date: -1} });
}
});
MongoDatabase.insert({
text: message,
date: new Date()
});
HTML
<template name="textDisplay">
{{#momentum plugin='right-to-left'}}
{{post.text}}
{{/momentum}}
</template>
答案 0 :(得分:0)
@Peter查看代码Percolate:Momentum
只支持多个元素collection.find()
光标至少包含2个元素。我对fadeIn()
进行了简单的jQuery使用,向您展示如何实际使用任何jQuery来动画它
http://meteorpad.com/pad/32rHhkm6NmdxSsTt4/Copy%20of%20Test
您可以尝试为Percolate:Momentum
打开一个github问题,也许他们有解决方法或找到不同的库?但如果它只是一个元素,那么实际上很容易使用jQuery。但是可能应该有不同的动画包只能使用一个元素。希望这很有用。