0
我試圖淡出標題,然後使用animate.css淡入新標題。目前我能夠執行淡入淡出,但我需要它們在相同的位置重疊。任何意見,將不勝感激。提前致謝。使用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>
完美!謝謝 – user3475215
歡迎你@Ha :) – Ralis