我試圖創建一個水平視差網站。我有一個ID #ellipse
上不同位置滑動從右到左的圖像,說 -根據其他圖像的位置將圖像旋轉90度
item.screenPos=["320%","220%","120%","34%","-80%","-180%","-280%","-380%"];
當此圖像到達的位置34%,這是在屏幕上可見。
我想要另一張id爲#strip
(不滑動並固定在屏幕中央)的圖像,當上面的圖像(ID爲#ellipse
)達到位置34%時旋轉90度。
我目前使用此 -
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#ellipse").position("34%")(function(){
$("#strip").rotate({angle:90});
});
});
</script>
任何人能幫助我。我打開使用javascript,jquery,css & php。
請make一個http://www.jsfiddle.net - 謝謝。 – redditor
請寫出你的HTML,CSS代碼...或者只是讓[jsfiddle](http://jsfiddle.net/) –