This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Using API canvas HTML
#3
(27.10.2019, 22:39)buuuudzik Wrote: You can do this like below:
Code:
const cvs = document.querySelector("icanvas2")
const ctx = cvs.getContext("2d");
console.log(cvs);

Hello:
I am trying to draw a simple line, in an element "Frame" in LogicMachine, but I think something is wrong

I try to do this, but  it doesnt work:

const cvs = document.querySelector(".icanvas3")
console.log(cvs);
const ctx = cvs.getContext("2d");
console.log(ctx);
ctx.moveTo(0,0);
ctx.lineTo(200,100);
ctx.stroke();

Could you help me please?

best regards
Reply


Messages In This Thread
Using API canvas HTML - by batistacaceres - 27.10.2019, 20:09
RE: Using API canvas HTML - by buuuudzik - 27.10.2019, 22:39
RE: Using API canvas HTML - by batistacaceres - 02.11.2019, 07:37
RE: Using API canvas HTML - by buuuudzik - 02.11.2019, 08:24
RE: Using API canvas HTML - by batistacaceres - 02.11.2019, 17:17
RE: Using API canvas HTML - by buuuudzik - 02.11.2019, 18:12
RE: Using API canvas HTML - by batistacaceres - 03.11.2019, 09:05
RE: Using API canvas HTML - by batistacaceres - 03.11.2019, 12:25
RE: Using API canvas HTML - by DGrandes - 05.11.2019, 15:51
RE: Using API canvas HTML - by Joep - 05.11.2019, 12:48
RE: Using API canvas HTML - by Joep - 05.11.2019, 16:06

Forum Jump: