gpt4 book ai didi

javascript - 如何淡入淡出然后重新淡化 jquery

转载 作者:行者123 更新时间:2023-12-02 17:55:58 25 4
gpt4 key购买 nike

$(document).ready(function(){

$('.titleword').fadeOut(500 , function(){
$('.titleword').click(function(){
var str = $(this).text();
var idx;
for (var x=0;x<5;x++)
{
if (str == categories[x])
{
idx = x;
}
}
categories[idx] = $('#headertext').text();
$('#headertext').text(str)
$(this).text(categories[idx]);
});
$('.titleword').fadeTo(500,1);
});
});

nw我要淡出这个类然后做一些操作,我需要的是在这个操作之后再次淡出。

但是所做的只是淡出,而不是淡入

我怎样才能同时进行这两项操作??????

最佳答案

   $('.titleword').fadeOut(500 , function(){
$('.titleword').click(function(){
var str = $(this).text();
var idx;
for (var x=0;x<5;x++)
{
if (str == categories[x])
{
idx = x;
}
}
categories[idx] = $('#headertext').text();
$('#headertext').text(str)
$(this).text(categories[idx]);
$('.titleword').fadeTo(500,1); //add this here

});
$('.titleword').fadeTo(500,1);
});

关于javascript - 如何淡入淡出然后重新淡化 jquery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20957123/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com