gpt4 book ai didi

jquery - 单击展开 div

转载 作者:行者123 更新时间:2023-12-01 06:33:19 26 4
gpt4 key购买 nike

您好,我正在尝试在单击按钮时创建一个可扩展的 div:我想用步骤制作动画,第一步是单击按钮,第二步是 div 宽度展开,第三步是 div 高度展开以获得整页。div 内的文本必须更改,例如隐藏第一个文本并在步骤完成后显示第二个文本有人知道该怎么做吗?这是我想要执行的步骤的草图: http://img15.hostingpics.net/pics/719800Sanstitre1.jpg

最佳答案

需要jQuery animate

$('.blue').click(function(){
//expand red div width to 200px
$('.red').animate({width: "200px"}, 500);
setTimeout(function(){
//after 500 milliseconds expand height to 800px
$('.red').animate({height:"800px"}, 500);
},500);
setTimeout(function(){
//after 1000 milliseconds show textarea (or textbox, span, etc)
$('.red').find('input[type="textarea"]').show();
},1000);
});

关于jquery - 单击展开 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30402207/

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