我創建了一個粗略的版本,您可以與工作使用CSS3動畫與簡單的兩個JavaScript函數一起添加/刪除動畫類。 Check it out here
這將比完全的javascript/jQuery版本表現更好。
此外,我建議製作向下滑動元素div
s而不是img
s,以便您可以在其中添加內容,就像我添加的按鈕一樣。
下面是相關代碼
<div id='firstDiv' class='overlay moveDown'>
<button onclick='firstAction()'></button>
</div>
<div id='secondDiv' class='overlay'>
<button onclick='secondAction()'></button>
</div>
<div id='content' class='fadeMe'>...Content...</div>
// CSS
.overlay {
position:absolute;
left:50%;
top:-500px;
margin-top:-200px;
margin-left:-250px;
width:500px;
height:400px;
background-repeat: no-repeat;
background-size: 100%;
z-index:3;
}
@keyframes movedown {
0% {
top:-100%;
}
100% {
top:50%;
}
}
@-webkit-keyframes movedown {
0% {
top:-100%;
}
100% {
top:50%;
}
}
@-moz-keyframes movedown {
0% {
top:-100%;
}
100% {
top:50%;
}
}
@-ms-keyframes movedown {
0% {
top:-100%;
}
100% {
top:50%;
}
}
@-o-keyframes movedown {
0% {
top:-100%;
}
100% {
top:50%;
}
}
@keyframes moveup {
0% {
top:50%;
}
100% {
top:-100%;
}
}
@-webkit-keyframes moveup {
0% {
top:50%;
}
100% {
top:-100%;
}
}
@-moz-keyframes moveup {
0% {
top:50%;
}
100% {
top:-100%;
}
}
@-ms-keyframes moveup {
0% {
top:50%;
}
100% {
top:-100%;
}
}
@-o-keyframes moveup {
0% {
top:50%;
}
100% {
top:-100%;
}
}
#firstDiv {
background-image: url(http://img2.timeinc.net/people/i/2013/pets/news/130304/kitten-3-600.jpg);
}
#secondDiv {
background-image: url(http://wallpapersfor.me/wp-content/uploads/2012/02/cute_cat_praying-1280x800.jpg);
}
.moveDown {
-webkit-animation: movedown 2s linear forwards;
-moz-animation: movedown 2s linear forwards;
-ms-animation: movedown 2s linear forwards;
-o-animation: movedown 2s linear forwards;
animation: movedown 2s linear forwards;
<!--
animation-name:"movedown";
animation-duration: 2s;
animation-timing-function: linear;
animation-fill-mode: forwards;
-->
}
.moveUp {
-webkit-animation: moveup 2s linear forwards;
-moz-animation: moveup 2s linear forwards;
-ms-animation: moveup 2s linear forwards;
-o-animation: moveup 2s linear forwards;
animation: moveup 2s linear forwards;
<!--
animation-name:"moveup";
animation-duration: 1s;
animation-timing-function: linear;
animation-fill-mode: forwards;
-->
}
#content {
padding:40px;
margin:0 auto;
width:75%;
height:75%;
opacity:1;
transition:2s opacity;
}
#content.fadeMe {
opacity:.4;
z-index:-1;
}
// Javascript
function firstAction() {
var elem = document.getElementById('firstDiv'),
elemTwo = document.getElementById('secondDiv');
elem.className = 'overlay moveUp';
elemTwo.className = "overlay moveDown";
}
function secondAction() {
var elem = document.getElementById('secondDiv'),
main = document.getElementById('content');
elem.className = 'overlay moveUp';
main.className = '';
}
編輯補充瀏覽器再次前綴
編輯,因爲顯然Safari不喜歡混在你的jsfiddle需要
認證像素和百分比? – aug
另外,當用戶點擊'讓我們開始'按鈕時,它會顯示另一個動畫。然後,用戶將點擊我們的開始按鈕,它會轉到一個表單(我已經做了)。所有這些動畫序列能在一個html文檔中發生嗎? – Rani
什麼反對js/jquery? –