Open In App

p5.Element addClass() Method

Last Updated : 07 Jul, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

The addClass() method of p5.Element in p5.js is used to add the specified class to an element. An element can have multiple classes assigned to it. Also, one class can be specified to multiple elements on the page.

Syntax:

addClass(class)

Parameters: This function accepts a single parameter as mentioned above and described below.

  • class: It is a string that denotes the class to be added.

Example: The example below illustrates the addClass() method in p5.js.

Javascript




function setup() {
  createCanvas(550, 300);
  textSize(18);
 
  text("Click on the buttons to add the given " +
       "class to the element", 20, 20);
 
  setBtn =
    createButton("Add given class to element");
  setBtn.position(30, 40);
  setBtn.mouseClicked(addNewClass);
 
  setBtn =
    createButton("Show current classes");
  setBtn.position(300, 40);
  setBtn.mouseClicked(showClasses);
 
  class_name = createInput('class1');
  class_name.position(30, 80);
 
  // Create a new p5.Element
  tmpElement = createElement("div");
}
 
function addNewClass() {
  clear();
 
  // Get the class to set
  let classToSet = class_name.value();
 
  // Set the class of the element
  tmpElement.addClass(classToSet);
 
  text("Class added with name: " +
       classToSet, 30, 120);
 
  text("Click on the button to add the given " +
       "class to the element", 20, 20);
}
 
function showClasses() {
  clear();
 
  // Get the classes of the element
  let setClasses = tmpElement.class();
 
  // Display the classes
  text("The classes of the element are: " +
       setClasses, 30, 120);
 
  text("Click on the button to add the given " +
       "class to the element", 20, 20);
}


Output:

Online editor: https://editor.p5js.org/
Environment Setup: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/
Reference: https://p5js.org/reference/#/p5.Element/addClass



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads