You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
583 B
JavaScript

function Background(config){
var self = this;
self.id = config.id;
// Dimensions, yo
var width = $("#main").clientWidth;
var height = $("#main").clientHeight;
var x = -(width-960)/2;
var y = -(height-540)/2;
// DOM
self.dom = document.createElement("div");
self.dom.className = "object";
self.dom.style.left = x+"px";
self.dom.style.top = y+"px";
self.dom.style.width = width+"px";
self.dom.style.height = height+"px";
self.dom.style.background = config.color;
// Add & Remove
self.add = function(){ _add(self); };
self.remove = function(){ _remove(self); };
}