Advertisement
Guest User

Untitled

a guest
Feb 21st, 2020
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const originalRatios = {
  2.       width: window.innerWidth / imgBackground.width,
  3.       height: window.innerHeight / imgBackground.height
  4.     };
  5.  
  6. const coverRatio = Math.max(originalRatios.width, originalRatios.height);
  7. const newImageWidth = imgBackground.width * coverRatio;
  8. const newImageHeight = imgBackground.height * coverRatio;
  9.  
  10. //Draw image centered
  11. image(imgBackground, width / 2 - newImageWidth / 2, height / 2 - newImageHeight / 2, newImageWidth, newImageHeight);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement