我正在编写一个小脚本。我差不多完成了,只需要做一些修改。在此处查看演示。我想要做的是,只有一个框应该说“你好朋友”,但如果你立即点击 2-3 个框,它会在多个框中显示“你好朋友”。
$(document).ready(function(){
$(".main").click(function(){
if($('.active').length){
// Slide down previous theater
$(this).animate({
top: '+=0',
}, 200, function() {
$(".main").removeClass("active");
});
$(".active").next("div").animate({
top: '+=270',
}, 200, function() {
});
}
// slide up new theater
$(this).animate({
top: '-=0',
}, 200, function() {
$(this).addClass("active");
});
$(this).next("div").animate({
top: '-=270',
}, 200, function() {
});
});
});