admin管理员组文章数量:1344241
In this stackoverflow post the accepted answer claimed that it is possible to use toggleClass
with a delay. But i did not find any information about a delay parameter on the official jquery API website.
I tried it but there is no delay after a click on the div.
$("div#test").click(function() {
$(this).toggleClass('light', 2000).toggleClass('dark', 2000);
});
div {
border: 1px dashed black;
}
.light {
background-color: white;
}
.dark
{
background-color: black;
}
<script src=".1.1/jquery.min.js"></script>
<div class="light" id="test">
<p style="color:red">click here</p>
</div>
In this stackoverflow post the accepted answer claimed that it is possible to use toggleClass
with a delay. But i did not find any information about a delay parameter on the official jquery API website.
I tried it but there is no delay after a click on the div.
$("div#test").click(function() {
$(this).toggleClass('light', 2000).toggleClass('dark', 2000);
});
div {
border: 1px dashed black;
}
.light {
background-color: white;
}
.dark
{
background-color: black;
}
<script src="https://ajax.googleapis./ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="light" id="test">
<p style="color:red">click here</p>
</div>
Share
Improve this question
edited May 23, 2017 at 12:30
CommunityBot
11 silver badge
asked Feb 16, 2016 at 13:55
BlackBlack
20.5k46 gold badges187 silver badges296 bronze badges
3
- 2 It's part of jQueryUI, not jQuery. There's even a link in the answer to the docs: jqueryui./toggleClass – Rory McCrossan Commented Feb 16, 2016 at 13:56
- 1 That's not jQuery only, it's jQueryUI – Tushar Commented Feb 16, 2016 at 13:56
- I am a newbie so i don't know the difference. – Black Commented Feb 16, 2016 at 13:57
4 Answers
Reset to default 6You can perform this operation with a basic timeout function :
$("div#test").click(function () {
var el = $(this);
window.setTimeout(function() {
el.toggleClass('light').toggleClass('dark');
}, 2000);
});
This is more efficient than a jQuery feature ;)
That's happening because the delay behavior is added by the jQuery UI library.
You're using only the jQuery library in your example.
jQuery website
jQuery UI website
Your example works if you include jQuery UI:
$("div#test").click(function() {
$(this).toggleClass('light', 2000).toggleClass('dark', 2000);
});
div {
border: 1px dashed black;
}
.light {
background-color: white;
}
.dark {
background-color: black;
}
<script src="https://ajax.googleapis./ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://code.jquery./ui/1.11.4/jquery-ui.min.js"></script>
<div class="light" id="test">
<p style="color:red">click here</p>
</div>
The .delay()
method allows you to delay the execution of functions that follow it in the queue. It can be used with the standard effects queue or with a custom queue, only subsequent events in a queue are delayed. for example this will not delay the no-arguments forms of .toggleClass()
or .show()
or .hide()
which do not use the effects queue.
Use it like this:
$("div#test").click(function() {
$(this).delay(2000).toggleClass('light').toggleClass('dark');
});
本文标签: javascripttoggleClass with delayStack Overflow
版权声明:本文标题:javascript - toggleClass with delay - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743693964a2523181.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论