jQuery闪烁效果按钮动画(提供小提琴)

use*_*896 1 javascript mobile jquery animation

请看看我的小提琴.为什么闪光效果仅在第一次点击时发生.之后它不再闪烁:

http://jsfiddle.net/vyAkk/

 $("#button").click(function (e) {
$(this).css('background', '#03182B').delay(500).queue(function(d) {
    $(this).css('background', '');
});
 });
Run Code Online (Sandbox Code Playgroud)

j08*_*691 5

你没有出征.

$("#button").click(function(e) {
    $(this).css('background', '#03182B').delay(500).queue(function(d) {
        $(this).css('background', '');
        $(this).dequeue();
    });
});?
Run Code Online (Sandbox Code Playgroud)

jsFiddle例子