アニメーションを意味していますか? それはJS/CSSジョブです。 PHPはサーバーサイドであり、Webページに表示される要素はサーバーからダウンロードされます。 JSとCSSは、HTMLだけでなくクライアント側でも動作します。ですから、アニメーションを作成したい場合は、n回繰り返すJS関数を作成することから始めます。そのループではdivのスタイルを編集するだけです。
あなたがそれを行う方法がわからない場合は、ここでのコードは次のとおりです。
var inter = setInterval(animate,20);
var i = 0;
function animate(){
document.getElementById("div1").style.marginBottom = i+"px";//This will make the div go up if your div id is div1. If not, just change div1 for your id. If you want to move it down, you would have to replace marginBottom for marginTop(this will only work if your div's position is relative).
i++;
if(i==200){//When it has moved 200px, it will stop
clearInterval(inter);
}
}
注:上記のコードは一例です。左/右/下に移動したい場合、または200pxの代わりに500px移動する場合は、それを変更する必要があります。コメントを参考にしてください
CSSやJavaScriptの仕事に似ています。あなたのコードはどこですか? – PHPglue
コードスニペットを追加!それはデザインの問題のようなものです。 –