Dimensionnement du canevas
height width Taille de la police Police
Mot à afficher
Valeur de la variable 'chiffre fétiche'
couleur police |
<!DOCTYPE HTML> <html lang = "fr"> <head> <title>tracer fonction</title> <meta charset = "utf-8" /> </head> <body> <canvas id = "schema" height="300" width="300" style="border:1px solid"> Votre navigateur ne supporte pas la balise canvas </canvas> <script> var zone_dessin = document.getElementById("schema"); var graphe= zone_dessin.getContext("2d"); graphe.fillStyle="ee"; graphe.font='pt '; graphe.fillText('',100,100); graphe.fillText(,100,130); </script> </body> </html> |