$.Velocity.RegisterEffect('lixin.pulse', {
defaultDuration:300,
calls: [
[{scalex:2.1},0.5],
[{scalex:1.0},0.5]
]
});
$('#div3').on('mouseover',function(){
$(this).velocity('lixin.pulse');
});
// "callout.customPulse" 只是示例,可以随便命名 比如"superSlide"
$.Velocity.RegisterEffect("callout.customPulse", { defaultDuration: 900, calls: [ [ { scaleX: 1.5 }, 0.50 ], // 0.50 为 动画总时间的50% [ { scaleX: 1 }, 0.50 ] ] });
// 调用
$element.velocity("callout.customPulse");
你没有调用函数