wyrian/guiltouf/js/layouts/BgLayer.js
2011-02-12 22:24:14 +01:00

25 lines
471 B
JavaScript

// -- Init the Background DIV
Layouts.Background = new Layout({
// -- Define elements to draw with options
el: [{
id: 'ground',
animate: function(obj) {
obj.y -= obj.parent.settings.speed*obj.parent.settings.direction;
obj.parent.settings.dom.css({backgroundPosition: '0 '+obj.y+'px'}) ;
obj.nodraw = true ;
}
}],
// -- Define current Speed
speed: 5,
direction: -1,
nomove: true,
// -- Define canvas parent
dom: $('div#background')
}) ;