请看看我的小提琴。为什么闪光效果只发生在第一次点击。之后它不再闪烁:
$("#button").click(function (e) {
$(this).css('background', '#03182B').delay(500).queue(function(d) {
$(this).css('background', '');
});
});
请看看我的小提琴。为什么闪光效果只发生在第一次点击。之后它不再闪烁:
$("#button").click(function (e) {
$(this).css('background', '#03182B').delay(500).queue(function(d) {
$(this).css('background', '');
});
});
你没有出队。
$("#button").click(function(e) {
$(this).css('background', '#03182B').delay(500).queue(function(d) {
$(this).css('background', '');
$(this).dequeue();
});
});
事件队列中出现了问题。stop()
每次在运行动画之前尝试事件链:
$("#button").click(function (e) {
$(this).stop().css('background', '#03182B').delay(500).queue(function(d) {
$(this).css('background', '');
});
});