Javascript Learning From Scratch -00004

deliaslan

Adem Deliaslan

Posted on September 29, 2019

Javascript Learning From Scratch -00004

****face draw and coloring

noStroke(); // it means no border for shapes. *şekillerin kenar kalınlığı olmayacağını ifade eder.

// face
fill(255, 255, 0); //filling with this color inside of the shape
ellipse(202, 208, 300, 300);

// eyes
fill(46, 46, 41); // each new fill command disables the previous same command.
ellipse(157, 151, 40, 40);
ellipse(304, 142, 40, 40);

// mouth
fill(252, 65, 65);
ellipse(257, 240, 120, 136);

output: Alt Text

💖 💪 🙅 🚩
deliaslan
Adem Deliaslan

Posted on September 29, 2019

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

Javascript Learning From Scratch -00003
javascript Javascript Learning From Scratch -00003

September 29, 2019

Arrays in Javascript - 00014
javascript Arrays in Javascript - 00014

October 23, 2019

Functions in Javascript - 00011
javascript Functions in Javascript - 00011

October 6, 2019

Text in Javascript -00010
javascript Text in Javascript -00010

October 6, 2019