0
我想在這裏動畫閃屏,我可以動畫的標誌,但是當我嘗試動畫背景整體動畫效果不工作。
我想在這裏https://jsfiddle.net/sureshpattu/yu2afj7b/:
這裏是我的SCSS:動畫背景和內容
.container {
display: table;
width: 100%;
height: 100vh;
background: #ddd;
margin: 20px;
}
.page {
//Intro Screen
&__intro {
display: table-cell;
vertical-align: middle;
transition: all 0.2s ease-in-out;
img {
width: 150px;
transition: all 0.2s ease-in-out;
}
&-wrapper {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 10;
display: table;
width: 100%;
height: 100vh;
background: #fff;
text-align: center;
}
&--hidden {
img {
width: 0;
transition: all 0.2s ease-in-out;
}
}
}
}
下面是HTML:
<div class="container">
<div class="page__intro-wrapper">
<div class="page__intro">
<img src="http://szmob.rbahn.com/img/sz-logo.svg" />
</div>
</div>
</div>
做你想做的動畫.page__intro,包裝背景是什麼? – johannesMatevosyan