我在導航到聊天頁面時應用了翻頁動畫,但問題在於我的頁面先翻頁,然後該頁面上呈現的文字翻轉。因此,我該怎麼做同時翻轉文字和頁面?在angularjs中通過頁面導航時添加翻頁動畫
HTML
<div ui-sref="chat" class="title">
<a href="#/app/chat">
<img class = "title-image" src="img/[email protected]"></img>
<p class="imgtext" style="color: rgb(102, 0, 0)">Chat</p>
</a><br>
</div>'
CHAT.HTML
<ion-view view-title="Chat" id="animation">
<ion-header-bar >
<a onclick="history.back()" > Back </a>
<h1 class="title">Chat</h1>
</ion-header-bar>
<ion-content>
<div >
</div>
</ion-content>
</ion-view>`
CSS
@keyframes example {
to { transform: rotateY(180deg);animation-timing-function: ease-out; }
}
#animation{
animation-name: example;
animation-duration: 1s;
perspective: 1000px;
}
我已經嘗試ng-Animate :),並在該頁面獲取旋轉,但沒有文字。 –