"YP3D" - Processing

ID Autor Duplicat din Ultima modificare
#6683 6B-Necsulescu Stefan Matei (Stefan_Matei_Necsulescu) - Miercuri, 16 apr 2025, 10:42
x
 
1
function setup() {
2
  createCanvas(400, 400);
3
  noLoop(); // Stops unnecessary looping
4
5
  let iframe = createElement('iframe', '');
6
  iframe.attribute('src', 'https://yp3d.com/');
7
  iframe.attribute('width', '400');
8
  iframe.attribute('height', '400');
9
  iframe.style('border', 'none');
10
  iframe.style('position', 'absolute');
11
  iframe.style('top', '0');
12
  iframe.style('left', '0');
13
}
14
Du-te sus!