Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 2nd, 2012  |  syntax: None  |  size: 0.26 KB  |  hits: 17  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. CSS3 Transformation while scrolling
  2. var sdegree = 0;
  3.  
  4. $(window).scroll(function() {
  5.  
  6.     sdegree ++ ;
  7.     sdegree = sdegree + 3 ;
  8.     var srotate = "rotate(" + sdegree + "deg)";
  9.     $("img").css({"-moz-transform" : srotate, "-webkit-transform" : srotate});
  10. });