0
我一直在試圖在一個完美的圓圈中移動圖像,但無法做到完美。我編寫了一個盒子以方形路徑旋轉。代碼如下。如何動畫圖像在框架中移動一圈?
<a-box id="box" position="-1 0.5 -3" src="images/pic2.jpg" onclick="loaddoc()" visible="true">
<a-animation attribute="position" fill="both" from="-1.0 0.5 -3" to="-2 0.5 -3" dur="5000"></a-animation>
<a-animation attribute="position" fill="both" from="-2 0.5 -3" to="-2 0.5 3" dur="5000" delay="5000"></a-animation>
<a-animation attribute="position" fill="both" from="-2.0 0.5 3" to="-1 0.5 3" dur="5000" delay="10000"></a-animation>
<a-animation attribute="position" fill="both" from="-1.0 0.5 3" to="-1 0.5 -3" dur="5000" delay="15000"></a-animation>
</a-box>
代碼的後JS-小提琴。 –