下面是Kissy的一个demo实例,里面的b.render()的作用是什么?
KISSY.use("anim,node,button",function(S,Anim,Node,Button){ //KISSY 1.2 以前可通过 var Node=S.Node ; var Anim=S.Anim var anim = Anim( '#test1', { 'background-color':'#fcc', //'border': '5px dashed #999', 'border-width':'5px', 'border-color':"#999999", 'border-style':"dashed", 'width': '100px', 'height': '50px', 'left': '900px', 'top': '285px', 'opacity': '.5', 'font-size': '48px', 'padding': '30px 0', 'color': '#FF3333' },5, 'bounceOut',function(){ alert('demo1 结束'); }); var b = new Button({ content: "开始动画" }); b.render(); b.on("click", function() { anim.run(); }); });
渲染这个实例