0
私はpuppybits jQueryプラグインQTransformを使用して要素を回転/アニメーションします(https://github.com/puppybits/QTransform)。私は回転が完了した後、ショーを除いてすべての作業をしています。ここでQTransform表示/非表示
はコードです:
$(document).ready(function(){
$('#rotatehs').hide();
$('#bkgimg')
.css('translate', 100)
.css('rotate', -1)
.animate({rotate: '+=360deg'}, 4000)
--------------> add show after rotate complete ('#rotatehs') here <--------------
});
はい、それはトリックを行います。ありがとうございました。 – Andrea
ようこそ。 – scessor