AjaxとCSSを使ってコンテンツセクションをスライドさせるスクリプトを作成しています。私は正常にそれが上からページの読み込みにスライドを作ったが、私はスライドアウト1つの問題があります!AjaxとCSS3を使ったアニメーション
私は 'aniOut'のクリップも書きましたが、それは動作しますが、私はトランジションの前に1つの読み込みを行うように見えます。私はいくつかのことを試しましたが、私はページをロックしたり、読み込みを停止したり、正しく起動したりしません。私は作業用コードを 'aniIn' CSS全体に含めました。なぜなら、それは-moz -webkit上で機能する機能を含んでいるからです。しかし、スレッドのスペースを節約するための 'aniOut'用の基本アニメーションコードだけです。
誰かがリソースに向かって私をプッシュできますか?
私のサイトは、作業中のスライドがThe Mind Companyにあります。
CSS:
header {
z-index:100;
position:relative;
display: block;
background-color: #272727;
height:100px;}
#contentBody {
min-height:48em;}
footer {
position:relative;
display: block;
background-color: #272727;
height:168px; }
#aboutPage {
display:none;}
#productPage {
display:none;}
#contactPage {
display:none;}
.aniIn {
z-index:0;
-webkit-animation-name: ANIMATEin;
-webkit-animation-duration: 1s;
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: ease-in;
-moz-animation-name: ANIMATEin;
-moz-animation-duration: 1s;
-moz-animation-iteration-count: 1;
-moz-animation-timing-function: ease-in;
/* Currently Not Working in browsers: Is planed for implimentation in later versions. */
animation-name: ANIMATEin;
animation-duration: 1s;
animation-iteration-count: 1;
animation-timing-function: ease-in;
-ms-animation-name: ANIMATEin;
-ms-animation-duration: 1s;
-ms-animation-iteration-count: 1;
-ms-animation-timing-function: ease-in;
}
@-webkit-keyframes ANIMATEin {
from {
margin-top:-3000px;
}
to {
margin-top:0px;
}
}
@-moz-keyframes ANIMATEin {
from {
margin-top:-3000px;
}
to {
margin-top:0px;
}
}
@keyframes ANIMATEin {
from {
margin-top:-3000px;
}
to {
margin-top:0px;
}
}
.aniOut {
z-index:0;
animation-name: ANIMATEout;
animation-duration: 1s;
animation-iteration-count: 1;
animation-timing-function: ease-in;
}
@keyframes ANIMATEout {
from {
margin-top:0px;
}
to {
margin-top:3000px;
}
}
Javaスクリプト:
function $_(IDS) { return document.getElementById(IDS); }
function ani(){
document.getElementById(classID).className ='aniOut';
}
function checkPage(classID, url){
var tmp = '';
var sel = document.getElementsByTagName('section');
for (var i=0; i<sel.length; i++){
if (sel[i].id == classID) { tmp = 'block' } else { tmp = 'none' }
$_(classID).className ='aniIn';
sel[i].style.display = tmp;}
$_(classID).style.display = 'block';
loadContent(classID, url); }
function loadContent (classID, url){
var xmlhttp;
if (window.XMLHttpRequest){
xmlhttp=new XMLHttpRequest();}
xmlhttp.onreadystatechange=function(){
if (xmlhttp.readyState==4 && xmlhttp.status==200){
document.getElementById(classID).innerHTML=xmlhttp.responseText;}}
xmlhttp.open("GET","content/"+url,true);
xmlhttp.send();}
とHTML5:私はSeveraのを試してみましたPrevious Post
http://stackoverflow.com/questions/9747783/transistion-with-ajax-and-css3の重複Brandon、http://meta.stackexchange.com/questions/7046/how-do-i-get-attention-for-my-old-unanswered-questionsをご覧ください。 – Zeta
k、申し訳ありません。今すぐリンクします。 –
https://developer.mozilla.org/ja/CSS/CSS_transitionsをご覧ください。あなたが達成したいこと、そして本当にアニメーションが必要なのか、それともトランジションだけが必要なのかを考えてみてください。そのような効果を生み出すためにスクリプトが達成すべきステップは何ですか?コンテンツが読み込まれる前にクラス*を追加するのは良い考えですか? – Zeta