Quantcast
Channel: Ted Larsson
Viewing all articles
Browse latest Browse all 6

HELP! can I set a methods value to values from the object in javascript?

$
0
0

function Rectangle(width, height, x, y){
this.width = width;
this.height = height;
this.x = x;
this.y = y;
this.widthString = '\''+width+'px'+'\'';
this.heightString = '\''+height+'px'+'\'';
this.area = function() {
console.log("area: " + this.width * this.height);
};

this.newWidth = function (width){
this.width = width;
};

this.newHeight = function (height){
this.height = height;
};

this.translate = function(x,y){
this.x = x;
this.y = y;
};

this.logValues = function(){
console.log('width: ' + this.width + '\n' + 'height: ' + this.height + '\n'

  • 'top: ' + this.x + '\n' + 'left: ' + this.y); };

this.scale = function(scale){
this.width *= scale;
this.height *= scale;
};

this.render = function(width, height, x, y, color){
let rectangle = document.createElement('DIV');
document.body.appendChild(rectangle);
rectangle.className = 'rectangle';
rectangle.style.background = color;
rectangle.style.width = width;
rectangle.style.height = height;
rectangle.style.position = 'absolute'
rectangle.style.top = x;
rectangle.style.left =y;
// rectangle.style.display = 'block';
// rectangle.style.visibility= 'visible'
// let text = document.createTextNode("Hi");
// rectangle.appendChild(text);
};
};

let rectangleOne = new Rectangle(100, 100, 0, 0);
rectangleOne.render('100px', '100px', '0px','0px','green' )
console.log(rectangleOne.widthString, rectangleOne.heightString);

let rectangleTwo = new Rectangle(200, 300, 10, 10);
rectangleTwo.render('100px','100px','100px','100px','blue' )
rectangleTwo.scale(2);

is there a way for me to set the height, width, x, y, values in my this.render method to use the values in my function Rectangle(width, height, x ,y)??


Viewing all articles
Browse latest Browse all 6

Trending Articles