我正在检查一个带有onfocusout函数的表格,输入的值已经存在于数据库中。如果存在,我将输入脉动5次,如下所示;
cell.pulsate({ //cell is my selector
color: "#bf1c56",
repeat: 5,
});
但问题是我没有获得脉动完成。我想在脉动工作5次后添加css输入。我找不到脉动的完整或完成选项。我有什么用途吗?
答案 0 :(得分:0)
您应该使用toggle
方法
cell.toggle( "pulsate", {
color: "#bf1c56",
repeat: 5
}, function() {
alert("I will be called when pulsate is finished");
});