-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
67 lines (53 loc) · 2.19 KB
/
app.js
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
var main = function() {
$('.typelist li').click(function() {
$('.typelist li').removeClass("active");
$(this).addClass("active");
// $('.techinfos').hide();
$('.techlist ul').hide();
$('.techlist .' + $(this).attr('id') + 'techs').show()
});
$('.techlist li').click(function() {
$('.techlist li').removeClass("active");
$(this).addClass("active");
var techName = $(this).children('a').text();
update(techName);
// $.getJSON("api.php?name=" + techName, function (data) {
// $('.techinfos img').attr('src', 'icons/' + data.type + '.png');
// $('.techinfos h1').text(data.name);
// $('#learn_1').text(data.learn[0] + "%");
// $('#learn_2').text(data.learn[1] + "%");
// $('#learn_3').text(data.learn[2] + "%");
//
// $('#learn_from_1').children('h4').text(data.learn_from[0].name);
// $('#learn_from_1').children('p').text(data.learn_from[0].location);
//
// $('#learn_from_2').children('h4').text(data.learn_from[1].name);
// $('#learn_from_2').children('p').text(data.learn_from[1].location);
//
// $('#learn_from_3').children('h4').text(data.learn_from[2].name);
// $('#learn_from_3').children('p').text(data.learn_from[2].location);
//});
$('.techinfos').show();
});
$('.techlist ul').hide();
$('.techinfos').hide();
update("Fire Tower");
$('.techlist .firetechs').show();
$('.techinfos').show();
}
var update = function(tech) {
$.getJSON("api.php?name=" + tech, function (data) {
$('.techinfos img').attr('src', 'icons/' + data.type + '.png');
$('.techinfos h1').text(data.name);
$('#learn_1').text(data.learn[0] + "%");
$('#learn_2').text(data.learn[1] + "%");
$('#learn_3').text(data.learn[2] + "%");
$('#learn_from_1').children('h4').text(data.learn_from[0].name);
$('#learn_from_1').children('p').text(data.learn_from[0].location);
$('#learn_from_2').children('h4').text(data.learn_from[1].name);
$('#learn_from_2').children('p').text(data.learn_from[1].location);
$('#learn_from_3').children('h4').text(data.learn_from[2].name);
$('#learn_from_3').children('p').text(data.learn_from[2].location);
});
}
$(document).ready(main);