main.js
5.18 KB
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
var data;
$(document).ready(function () {
var dropdown = $('#selectBox');
var form = $('#form');
var result = $('#result');
var a2=$('#a1');
for (i = 2; i < 861; i++) {
var option = $('<option>');
option.val(i).text(i+'회차');
dropdown.append(option);
}
form.on('submit', function (event) {
event.preventDefault();
if (!dropdown.val()) {
alert('뭔가 선택을 하세요.');
dropdown.focus();
} else {
document.getElementById("a1").src="http://lotto.kaisyu.com/api?method=get&gno="+dropdown.val()+";callback=loadlot";
}
});
});
function dice(n, s, b) {
var out = 0;
for (i = 0; i < n; i++) {
out += Math.ceil(s * Math.random());
}
return out + b;
}
function count() {
// console.log($('#inputnum').val());
var numberSort = function(a, b) {
return a[0] - b[0];
};
$('#lottotable').html(""); //초기화
var win1 = 0;
var win2 = 0;
var win3 = 0;
var win4 = 0;
var win5 = 0;
(function engine(i) {
setTimeout(function() {
var list_length = ($('#lottotable li').length + 1);
var list = "";
var val = [
[0, 0], //[번호, 당첨여부]
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0]
];
var match = 0; //몇개 숫자가 적중했나
var match_b = 0; //보너스숫자가 적중했나
for (j = 0; j < 6; j++) {
// val[j][0] = dice(1, 45, 0);
function roll(n) {
if (j == 0) {
val[j][0] = n;
} else {
for (l = 0; l < j; l++) {
// console.log(n);
if (n == val[l][0]) {
roll(dice(1, 45, 0));
} else {
val[j][0] = n;
}
}
}
}
roll(dice(1, 45, 0));
// console.log("No." + (list_length) + ": " + val);
for (m = 0; m < 6; m++) {
if (val[j][0] == data.nums[m]) {
val[j][1] = 1;
match++;
}
}
// console.log("No." + (list_length) + ": " + val);
if (val[j][0] == data.bnum) {
val[j][1] = 2;
match_b = 1;
}
}
// console.log("before sort: "+val);
val.sort(numberSort);
// console.log("after sort: "+val);
for (j = 0; j < 6; j++) {
function setColorClass() {
if (val[j][0] <= 10) {
num_class = "c1 ";
} else if (val[j][0] <= 20) {
num_class = "c2 ";
} else if (val[j][0] <= 30) {
num_class = "c3 ";
} else if (val[j][0] <= 40) {
num_class = "c4 ";
} else {
num_class = "c5 ";
}
if (val[j][1] == 1) {
num_class += "match ";
} else if (val[j][1] == 2) {
num_class += "match_b ";
}
}
var num_class;
setColorClass();
list += '<div class="output ' + num_class + '">' + val[j][0] + '</div>';
// console.log(match);
}
var win_class;
if (match == 6) {
win_class = 'win win1';
win1++;
console.log('win1');
} else if (match == 5 && match_b == 1) {
win_class = 'win win2';
win2++;
console.log('win2');
} else if (match == 5) {
win_class = 'win win3';
win3++;
console.log('win3');
} else if (match == 4) {
win_class = 'win win4';
win4++;
console.log('win4');
} else if (match == 3) {
win_class = 'win win5';
win5++;
console.log('win5');
}
$('#stats').html(
'1등: ' + win1 + "<span class='translation'>(" + (win1 / list_length * 100).toFixed(2) + "%)</span>" +
' | 2등: ' + win2 + "<span class='translation'>(" + (win2 / list_length * 100).toFixed(2) + "%)</span>" +
' | 3등: ' + win3 + "<span class='translation'>(" + (win3 / list_length * 100).toFixed(2) + "%)</span>" +
' | 4등: ' + win4 + "<span class='translation'>(" + (win4 / list_length * 100).toFixed(2) + "%)</span>" +
' | 5등: ' + win5 + "<span class='translation'>(" + (win5 / list_length * 100).toFixed(2) + "%)</span>" +
" | 총당첨율: " + ((win1 + win2 + win3 + win4 + win5) / list_length * 100).toFixed(2) + "%" +
'<br><progress value="' + list_length + '" max="' + totalbuy + '"></progress>'
);
$('#lottotable').append('<li class="' + win_class + '">' + list + '</li>');
// break;
if (--i) engine(i);
}, 0)
})($('#inputnum').val());
var totalmatch = (win1 + win2 + win3 + win4 + win5)
var totalbuy = $('#inputnum').val();
}
function loadlot(a) {
$("#lottok").html('제 ' + a.gno + '회차 당첨 결과(' + a.gdate + ')'); // + '<br/>' +
//a.nums + a.bnum;
a.nums[6] = a.bnum;
for (i = 0; i < 7; i++) {
$('#output' + i).text(a.nums[i]);
}
for (i = 0; i < 7; i++) {
if (a.nums[i] <= 10) {
$('#output' + i).addClass("c1");
} else if (a.nums[i] <= 20) {
$('#output' + i).addClass("c2");
} else if (a.nums[i] <= 30) {
$('#output' + i).addClass("c3");
} else if (a.nums[i] <= 40) {
$('#output' + i).addClass("c4");
} else {
$('#output' + i).addClass("c5");
}
}
data = a;
}