Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

125
Views
can't see rect on javascript canvas

I am trying to draw a rect to the screen but it doesn't show up here is the code used

index.html

<!DOCTYPE html>

<html>
<head>
    <body>
    <canvas id="myCanvas" width="500" height="500"></canvas>
    <script src="drawer.js"></script>
    <script src="main.js"></script>
</body>
</head>

</html>

main.js

var canvas = document.getElementById("myCanvas")
var render = canvas.getContext("2d")

fillColor(255,0,125)
rectangle(25,25.50,100)

drawer.js

function rectangle(x, y, w, h){
    render.beginPath()
    render.rect(x, y, w, h)
    render.fill()
    render.stroke()
}
function fillColor(r, g, b){
    r=String(r)
    g=String(g)
    b=String(b)
    render.fillStyle = "rgb"+r+","+g+"n"+b+")"
}

I have tried on chrome and opera gx but the rect won't show up

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!