Skip to content

Instantly share code, notes, and snippets.

@MiLk
Created December 11, 2011 20:13
Show Gist options
  • Save MiLk/1462494 to your computer and use it in GitHub Desktop.
Save MiLk/1462494 to your computer and use it in GitHub Desktop.
var cubes = $$('a.cube');
cubes.each(function(cube,i) {
cube.addEvent('click',function(e) {
e.stop();
var to = $(cube.get("rel")).getPosition();
to.x = 0; to.y = to.y - 300;
var scroll = new Fx.Scroll(window,{
duration: 1000,
offset: to
}).start();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment