スクロール時に要素を回転させるアニメーションを実行しています。Webkit で動作させるだけですが、他のブラウザーでは動作しませんでした:
jQuery
var $cog = $('#cog'),
$body = $(document.body),
bodyHeight = $body.height();
$(window).scroll(function () {
$cog.css({
// this work
'transform': 'rotate(' + ($body.scrollTop() / bodyHeight * 360) + 'deg)',
// this not work
'-moz-transform': 'rotate(' + ($body.scrollTop() / bodyHeight * 360) + 'deg)',
'-ms-transform': 'rotate(' + ($body.scrollTop() / bodyHeight * 360) + 'deg)',
'-o-transform': 'rotate(' + ($body.scrollTop() / bodyHeight * 360) + 'deg)'
});
});