
Документация
на русском v1.2.5 Документацитя по MooTools 1.4.5 Обсуждение Установить себе Благодарности
на русском v1.2.5 Документацитя по MooTools 1.4.5 Обсуждение Установить себе Благодарности
Scrolls any element with an overflow, including the window element.
var myFx = new Fx.Scroll(element[, options]);
Options:
var myFx = new Fx.Scroll('myElement', { offset: { 'x': 0, 'y': 100 } }).toTop();
Scrolls the specified Element to the x/y coordinates immediately.
myFx.set(x, y);
var myElement = $(document.body); var myFx = new Fx.Scroll(myElement).set(0, 0.5 * document.body.offsetHeight);
Scrolls the specified Element to the x/y coordinates provided.
myFx.start(x, y);
var myElement = $(document.body); var myFx = new Fx.Scroll(myElement).start(0, 0.5 * document.body.offsetHeight);
Scrolls the specified Element to its maximum top.
myFx.toTop();
//Scrolls "myElement" 200 pixels down from its top and, after 1.5 seconds, //back to the top. var myFx = new Fx.Scroll('myElement', { onComplete: function(){ this.toTop.delay(1500, this); } }).scrollTo(0, 200).chain(function(){ this.scrollTo(200, 0); });
Scrolls the specified Element to its maximum bottom.
myFx.toBottom();
//Scrolls the window to the bottom and, after one second, to the top. var myFx = new Fx.Scroll(window).toBottom().chain(function(){ this.toTop.delay(1000, this); });
Scrolls the specified Element to its maximum left.
myFx.toLeft();
//Scrolls "myElement" 200 pixels to the right and then back. var myFx = new Fx.Scroll('myElement').scrollTo(200, 0).chain(function(){ this.toLeft(); });
Scrolls the specified Element to its maximum right.
myFx.toRight();
//Scrolls "myElement" to the right edge and then to the bottom. var myFx = new Fx.Scroll('myElement', { duration: 5000, wait: false }).toRight(); myFx.toBottom.delay(2000, myFx);
Scrolls the specified Element to the position the passed in Element is found.
myFx.toElement(el);
//Scrolls the "myElement" to the top left corner of the window. var myFx = new Fx.Scroll(window).toElement('myElement');
© Linux.ria.ua, 2008-2018 |