gpt4 book ai didi

javascript - 使用显示属性淡入淡出

转载 作者:太空宇宙 更新时间:2023-11-03 21:28:52 24 4
gpt4 key购买 nike

function myFunction() {
document.getElementById("myDIV").style.display = "block";
document.getElementById("second").style.display = "none";
}

function myFunction2() {
document.getElementById("second").style.display ="block";
document.getElementById("myDIV").style.display = "none";
}
#myDIV {
width: 500px;
height: 500px;
background-color: lightblue;
display: none;
}

#second {
width: 500px;
height: 500px;
background-color: lightblue;
display: none;
}
<button onclick="myFunction()">Try it</button>
<button onclick="myFunction2()">Try this now</button>
<div id="myDIV">
This is my DIV element.
</div>
<div id="second">
This is my DIV2 element.
</div>

上面的代码让两个分区在同一个位置交替出现。我怎样才能以它们出现和消失的方式操纵这些部门。更具体地说是淡入(出现)淡出(消失)。谢谢

最佳答案

使用jQuery 进行事件处理和淡入淡出 动画:

HTML:

<button id="button1">Try it</button>
<button id="button2">Try this now</button>

Javascript:

$('#button1').on('click', function () {
$('#second').fadeOut(2000, function () {
$('#myDIV').fadeIn(2000);
});
});


$('#button2').on('click', function () {
$('#myDIV').fadeOut(2000, function () {
$('#second').fadeIn(2000);
});
});

演示:http://jsfiddle.net/tusharj/rLvpqcLb/

关于javascript - 使用显示属性淡入淡出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30796874/

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