JavaScript DOM element Collision detection How to check for overlap between Page elements

Learn JavaScript FULL Course 9 hours+ lifetime access HD videos

https://www.udemy.com/course/javascript-mini-projects/

JavaScript Projects JS Dynamic interactive DOM elements

Perfect to practice and learn more about JavaScript and DOM interactions create useful components and more

JavaScript DOM element Collision detection How to check for overlap between Page elements

The overlap of elements is what can be referred to as collision detection.  This is a standard part of most games, when moving page elements to be able to detect the position and calculate if they are overlapping.

This exercise is designed to test and learn more about how to check for overlap of elements that move on the page.  It will demonstrate how to set up movement of page elements, and output the values needed to calculate the collision between two page elements.

Set up movement of page elements and track the position exercise :

  1. Create a function that allows for the creation of page elements as we can then dynamically add elements to the page as needed.  Give the function a name of adder() to get the parent element that the new element will be appended to.  Create the element using the string value of the element tag.  Add the inner HTML content for the element and also add a class using the string value.
  2. Create 4 page elements, 2 boxes that will be moved, and 2 areas to output the box coordinates and dimensions.
  3. Create a global game object that can track the animation frame, contains the x,y (horizontal,vertical) position of each box, and that contains the h,w (height and width) of each box.  These values then can be used to update the position.
  4. Set up an object named keyz to track which keyboard keys will be used for element movement.  Add 8 key code names as property names and set the values to false.  This will be updated once the key is pressed.
  5. Add event listeners on the document that listen for keydown and keyup events.  If the keys from the keyz object pressed match the object property name, set the value to true on press down and false on up.   This can now be used for the element movement.
  6. Create and Launch the mover() function which will handle page element movement on key presses.
  7. Within the mover() function add conditions to check which keys are true, update the game object x,y for each box accordingly.  Also apply a condition to check to ensure that before the movement is allowed that the element is within the boundaries of the main container object element.
  8. Update the style values of properties left and top for each box with the new game x,y values for each.
  9. Output the x,y,h,w of each element to the page as they move; these values should change with the new x,y coordinates of the element.  These will be used to calculate the collision of the elements.

Collision detection Checker of DOM page elements Part 2

Source Code Collision detection with JavaScript DOM elements example

To check if any two elements are overlapping you need both element, x,y height and width values.   These can then be used to calculate the corners to see overlap on the horizontal axis and overlap on the vertical axis.  If both horizontal and vertical are overlapping then there is a collision occurring between the two elements on the page.

Using getBoundingClientRect() will return the dimension of an element.  This method returns an object of values which properties include, bottom, height, left, right, top, width, x, y

These values for the element can then be used in the collision formula to check for overlap.

Moving exercise to check for element overlap:

  1. create move output areas to show the current stats of the element and the collision values.  Update the style of the element if an overlap occurs.
  2. Create a new element in the center to use within the collision check function.
  3. Create a new function that requires two parameters, one for each element to check.  Get the boundaries of the element.
  4. Create a function col() which can check the boundaries and return a boolean value if the two elements are overlapping.  Use this formula to check for overlap of the elements between the various boxes on the screen.
  5. Update element styling and output info styling depending on the result of the collision detection.

Leave a Comment