如何让我的骨干滑动 - 骨干视图上的一些动画
var View = Backbone.View.extend({
el : "#editor", // Bind to the editor id
render : function() {
var data = {
item: this.model,
_: _
};
var compiledTemplate = _.template( Template, data ); // Merge model with template
this.$el.html( compiledTemplate );
this.$('.editor-pane').show(500); // Does animation work here...NO!! Urgh.
return this;
}
});
是的。#editor 包含 .editor-pane
我对#editor 元素上的版本也很满意:
this.$el.html( compiledTemplate ).show ('slow');