-
序列动画的三种实现方式——方式一查看全部
-
使用velocity时,首先要加载 jQuery 库,velocity 库 以及 ui.velocity 库查看全部
-
动画序列: var seq = [{ elements: $("#div1"), properties: { width:"300px" }, options: { duration:1000 } }, { elements: $("#div2"), properties: { width:"300px" }, options: { duration:1000 } }, { elements: $("#div3"), properties: { width:"300px" }, options: { duration:1000 } } ]; $.Velocity.RunSequence( seq );查看全部
-
velocity.js :查看全部
-
scale:查看全部
-
很赞查看全部
-
很赞查看全部
-
pre-registered预定义动画查看全部
-
seq查看全部
-
动画队列:sequenceQueue:false关闭,即将同时执行查看全部
-
RegisterEffect()跟RegisterUI基本一样查看全部
-
$.Velocity.RegisterEffect("动画名",{ //动画时间 defaultDuration:300, calls:[ //0.5表示占用=default时间的百分比 [{scaleX:1.1},0.5] ] })查看全部
-
预定义动画查看全部
-
var seq = [ { element:$(), properties:{}, option:{} }, { }, { }]; $.Velocity.RunSequence(seq);查看全部
-
//动画1结束后执行动画2(方法三 优化后) $(function(){ var dong = [ {e:$("#box1"),p:{height:"200px"},o:{duration:3000}}, {e:$("#box2"),p:{height:"200px"},o:{duration:3000}}, {e:$("#box3"),p:{height:"200px"},o:{duration:3000}} ];//动画序列 $.Velocity.RunSequence(dong); });查看全部
举报
0/150
提交
取消