-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
140 lines (115 loc) · 3.98 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Paint on Web</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;1,300&display=swap" rel="stylesheet">
<style>
body {
background-image: url("https://placeimg.com/1280/720/animals");
background-repeat: no-repeat;
background-size: cover;
color: white;
text-align: center;
font-family: 'Poppins', sans-serif;
}
</style>
</head>
<body>
<main>
<div>
<p>Bienvenid@!<br>Paint on the web, es un sitio diseñado para niños que están comenzando a interactuar con el computador,<br>de tal manera que con el solo uso del mouse podrán interactuar, divertirse y hacer sus primeros trazos y dibujos.</p>
<p>Instrucciones:<br>
1. Con clic izquierdo sostenido haces un trazos<br>
2. Cambia de color haciendo un clic izquierdo sobre él.<br>
3. Clic derecho para borrar y comenzar de nuevo.</p>
</div>
</main>
<canvas width="1024" height="600"></canvas>
<script>
var lienzo = document.querySelector('canvas');
var pincel = lienzo.getContext('2d');
pincel.fillStyle = "grey";
pincel.fillRect(0, 0, 1024, 600);
function drawSquare(x,y,color){
pincel.fillStyle = color;
pincel.fillRect(x,y,50,50);
pincel.strokeStyle = "black";
pincel.strokeRect(x,y,50,50);
}
drawSquare(0,0,"red");
drawSquare(50,0,"blue");
drawSquare(100,0,"green");
var defaultColor = "blue";
var canDraw = false;
function drawCircle(x,y,defaultColor) {
if(canDraw) {
pincel.fillStyle = defaultColor;
pincel.beginPath();
pincel.arc(x, y, 5, 0, 2 * Math.PI);
pincel.fill();
}
}
function ableDraw() {
canDraw = true;
}
function disableDraw() {
canDraw = false;
}
function noArea(enX, enY){
if((enX >= 0 && enX < 150) &&
(enY >= 0 && enY < 50)) {
return false;
}
else{
return true;
}
}
function catchMouseMove(evento){
var x = evento.pageX - lienzo.offsetLeft;
var y = evento.pageY - lienzo.offsetTop;
if(noArea(x,y)){
drawCircle(x,y,defaultColor);
}
}
function chooseColor(evento){
var x = evento.pageX - lienzo.offsetLeft;
var y = evento.pageY - lienzo.offsetTop;
if (y < 50){
if(x < 50){
defaultColor = "red";
console.log(defaultColor);
}
else if (x > 50 && x < 100) {
defaultColor = "blue";
console.log(defaultColor);
}
else if (x > 100 && x < 150) {
defaultColor = "green";
console.log(defaultColor);
}
}
}
function erase(){
pincel.clearRect(0,0,600,400);
pincel.fillStyle = "grey";
pincel.fillRect(0,0,600,400);
drawSquare(0,0,"red");
drawSquare(50,0,"blue");
drawSquare(100,0,"green");
defaultColor = "blue";
return false;
}
lienzo.onmousemove = catchMouseMove;
lienzo.onmousedown = ableDraw;
lienzo.onmouseup = disableDraw;
lienzo.onclick = chooseColor;
lienzo.oncontextmenu = erase;
</script>
</body>
</html>