jquery 眨几下
我想通过使用 addClass 和 removeClass 各 3 次来为元素提供闪烁效果 我试过了,
$("#div").addClass("orange").delay(300).queue(function(next){
$(this).removeClass("orange");
next();
});
这只能工作 1 次,
我怎样才能使这种情况发生 3 次,延迟 300 毫秒?
i want to give blink effect to an element by using addClass and removeClass 3 times each
i tried this
$("#div").addClass("orange").delay(300).queue(function(next){
$(this).removeClass("orange");
next();
});
this is works just 1 time
how can i make this happened 3 times with 300 ms delay?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
数到三:
我猜你可能会喜欢并为它编写自己的动画插件。
Just count to three:
You could get fancy and write your own animation plugin for it, I guess.