-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
145 lines (131 loc) · 4.24 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
141
142
143
144
145
<html>
<head >
<title>La ruleta de la muerte</title>
<script src="js/Winwheel.min.js"></script>
<script src="js/TweenMax.min.js"></script>
<script src="js/jquery-3.3.1.js"></script>
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="js/sweetalert.min.js"></script>
<link rel="stylesheet" href="css/sweetalert.css">
</head>
<body>
<nav class="navbar navbar-dark bg-dark">
<a class="navbar-brand" href="#">
Ruleta de la suerte
</a>
</nav>
<div class="content">
<div class="row">
<!-- <div class="col-sm-4"></div> -->
<div class="col-md-3">
<div class="card">
<div class="card-body">
<h5 class="font-weight-bold">Bienvenido al juego</h5>
<h4 class="card-title">Agregar Elementos:</h4>
<textarea id="ListaElementos" class="form-control" rows="11">valor1
valor2
valor3
valor4
valor5
</textarea>
<br>
<input type="button" onclick="leerElementos()" class="btn btn-success btn-lg btn-block" value="Generar Ruleta"><br>
</div>
<ul class="list-group list-group-flush">
<!-- <li class="list-group-item" id="ListaElementos"> -->
</ul>
</div>
</div>
<div class="col-md-5" style="margin-top: 10px">
<input type="button" id="bigButton" class="btn btn-success" value="Girar" onclick="objRuleta.startAnimation(); this.disabled=true;"/>
<input type="button" class="btn btn-primary" value="Reiniciar" onclick="reinicio(); this.disabled=false;"/>
<div id="canvasContainer" onclick="objRuleta.startAnimation(); bigButton.disabled = true;">
<canvas id="Ruleta" height="400" width="400"></canvas>
</div>
</div>
</div>
<script>
var objRuleta;
var winningSegment;
var ctx;
function Mensaje() {
winningSegment = objRuleta.getIndicatedSegment();
swal({
title:"El ganador es: "+winningSegment.text+"",
showCancelButton: true,
confirmButtonColor: "#e74c3c",
confirmButtonText: "Aceptar",
cancelButtonText: "Quitar elemento",
closeOnConfirm: true,
closeOnCancel: true
},
function (isConfirm) {
if (isConfirm) {
} else {
$('#ListaElementos').val($('#ListaElementos').val().replace(winningSegment.text,""));
leerElementos();
}
objRuleta.stopAnimation(false);
// objRuleta.rotationAngle = 0;
objRuleta.draw();
DibujarTriangulo();
bigButton.disabled = false;
});
}
function reinicio() {
objRuleta.stopAnimation(false);
objRuleta.rotationAngle = 0;
objRuleta.draw();
DibujarTriangulo();
bigButton.disabled = false;
}
function DibujarTriangulo() {
ctx = objRuleta.ctx;
ctx.fillStyle = '#28a745';
ctx.lineWidth = 0;
ctx.beginPath();
ctx.moveTo(170, 0);
ctx.lineTo(230, 0);
ctx.lineTo(200, 40);
ctx.lineTo(171, 0);
ctx.stroke();
ctx.fill();
}
function DibujarRuleta(ArregloElementos) {
objRuleta = new Winwheel({
'canvasId': 'Ruleta',
'numSegments': ArregloElementos.length,
'outerRadius': 190,
'textFontSize' : 17,
'textAlignment' : 'center',
'textOrientation': 'horizontal',
'textDirection': 'reversed',
'strokeStyle' : 'rgba(255, 255, 255, 0)',
'innerRadius' : 50,
'segments':ArregloElementos,
'textFillStyle': '#fff',
'animation':
{
'type': 'spinToStop',
'duration':Math.floor((Math.random() * 10) + 1),
'spins': 5,
'callbackFinished': 'Mensaje()',
'callbackAfter': 'DibujarTriangulo()'
},
});
DibujarTriangulo();
}
function leerElementos() {
txtListaElementos=$('#ListaElementos').val().trim();
var Elementos = txtListaElementos.split('\n');
var ElementosRuleta= [];
Elementos.forEach(function (Elemento) {
if(Elemento){
ElementosRuleta.push({ 'fillStyle': "#" + ((1 << 24) * Math.random() | 0).toString(16), 'text': Elemento });
}
});
DibujarRuleta(ElementosRuleta);
} leerElementos();
</script>
</body>
</html>