-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
91 lines (77 loc) · 2.09 KB
/
index.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/**
* Created by alejandrorioscalera
* On 16/8/17
*
* -- SOCIAL NETWORKS --
*
* GitHub: https://github.com/clonalejandro or @clonalejandro
* Website: https://clonalejandro.me/
* Twitter: https://twitter.com/clonalejandro11/ or @clonalejandro11
* Keybase: https://keybase.io/clonalejandro/
*
* -- LICENSE --
*
* All rights reserved for clonalejandro ©Malextrap | Weather 2017 / 2018
*/
/**
* Created by alejandrorioscalera
* On 13/12/17
*
* -- SOCIAL NETWORKS --
*
* GitHub: https://github.com/clonalejandro or @clonalejandro
* Website: https://clonalejandro.me/
* Twitter: https://twitter.com/clonalejandro11/ or @clonalejandro11
* Keybase: https://keybase.io/clonalejandro/
*
* -- LICENSE --
*
* All rights reserved for clonalejandro ©malextrap 2017 / 2018
*/
/** SMALL CONSTRUCTORS **/
/**
* @constructor
*/
function Weather() {
sun(document.querySelector(".hot"));
cloud(document.querySelector(".cloudy"));
snow(document.querySelector(".snowy"));
rain(document.querySelector(".rain"));
night(document.querySelector(".night"));
};
/** OTHERS **/
/**
* @param e element
* @returns element
*/
function sun(e){
return e.innerHTML += "<span class='sun'></span><span class='sunx'></span>";
}
/**
* @param e element
* @returns element
*/
function cloud(e){
return e.innerHTML += "<span class='cloud'></span><span class='cloudx'></span>";
}
/**
* @param e element
* @returns element
*/
function snow(e){
return e.innerHTML += "<ul><li></li><li></li><li></li><li></li><li></li><li></li><li></li><li></li></ul><span class='snowe'></span><span class='snowex'></span><span class='stick'></span><span class='stick2'></span>";
}
/**
* @param e element
* @returns element
*/
function rain(e){
return e.innerHTML = "<ul><li></li><li></li><li></li><li></li><li></li></ul><span class='cloudr'></span>";
}
/**
* @param e element
* @returns element
*/
function night(e){
return e.innerHTML = "<span class='moon'></span><span class='spot1'></span><span class='spot2'></span><ul><li></li><li></li><li></li><li></li><li></li></ul>";
}