gpt4 book ai didi

jquery - 使用 Animate.css 淡出然后淡入

转载 作者:行者123 更新时间:2023-11-28 05:18:43 24 4
gpt4 key购买 nike

我正在尝试使用 animate.css 淡出标题然后淡入新标题。目前我能够执行淡入淡出,但我需要它们在同一位置重叠。任何意见,将不胜感激。提前致谢。

<link href="animate.css" rel="stylesheet">
<style type="text/css">
body {
font-family: helvetica;
}
h1 {
font-size: 20em;
text-align: center;
}
.item {
margin: 300px auto 0 auto;
color: black;
text-align: center;
-webkit-animation-duration: 2s;
/* -webkit-animation-delay: 2s; */
/*-webkit-animation-iteration-count: 2;*/
}
.why {
margin: 300px auto 0 auto;
color: black;
text-align: center;
-webkit-animation-delay: 2s;
-webkit-animation-duration: 2s;
}
</style>
</head>
<body>
<div class="item animated fadeOut"><h1>Cities</h1></div>
<div class="why animated fadeIn"><h1>WHY</h1></div>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js">
</script>

最佳答案

试试下面的代码:

<link href="animate.css" rel="stylesheet">
<style type="text/css">
body {
font-family: helvetica;
}
h1 {
font-size: 20em;
text-align: center;
}
.item {
margin: 300px auto 0 auto;
color: black;
text-align: center;
-webkit-animation-duration: 2s;
/* -webkit-animation-delay: 2s; */
/*-webkit-animation-iteration-count: 2;*/
}
.why {
margin: 300px auto 0 auto;
color: black;
text-align: center;
-webkit-animation-delay: 2s;
-webkit-animation-duration: 2s;
}
</style>
</head>
<body>
<div class="item animated fadeOut" style="position:absolute">
<h1>Cities</h1>
</div>
<div class="why animated fadeIn" style="position:absolute">
<h1>WHY</h1>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js">
</script>
</body>

关于jquery - 使用 Animate.css 淡出然后淡入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39178618/

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