Cquence.jsJavaScript 动画库
Cquence 是一个非常小的 JavaScript 动画库,用于 banner 和广告的展示。
最基本的使用方法:
var render = null; // Define the render object so that the renderloop knows what to render. render = combine() // Combine fires the sequences in its body the same time render = sequence() // Define the animations in order to create a timeline sequence( easIn( :id, :time, { :from }, { :to }), easOut( :id, :time, { :from }, { :to }), sleep( :time ) // Wait utill time is passed )
评论