-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscript.js
148 lines (148 loc) · 4.69 KB
/
script.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
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
//
// =============================================================== >> Auther text <<
//
// I use Iconify-icon site for my icon source, check it out.
//
// =============================================================== >> Auther text <<
//
// =================================================================== >> improts <<
//
// --------------------------------------------------------- >> BTN <<
import { BTN } from "./BTN/BTN.js";
// --------------------------------------------------------- >> BTN <<
//
// =================================================================== >> improts <<
//
// ================================================================== >> Selector <<
const BG_1 = document.querySelector("#BG_1");
// ================================================================== >> Selector <<
//
// =================================================================== >> Layer 1 <<
//
// ------------------------------------------------------ >> Submit <<
//
// ---------------------------------------- > Varibales <
//
const SubmitID = "SubmitButtonID";
//
const SubmitHaveText = true;
const SubmitButtonText = "Submit";
//
const SubmitHaveIcon = true;
const SubmitButtonIcon = "line-md:check-all";
//
const SubmitHaveListener = true;
//
// ---------------------------------------- > Varibales <
//
// ----------------------------------------- > CallBack <
const SubmitButton = BTN(
SubmitID,
SubmitHaveText,
SubmitButtonText,
SubmitHaveIcon,
SubmitButtonIcon,
SubmitHaveListener,
SubmitListener
);
// ----------------------------------------- > CallBack <
//
// ----------------------------------------- > Listener <
function SubmitListener() {
console.log("Clicked");
}
// ----------------------------------------- > Listener <
//
// ------------------------------------ > Append Button <
BG_1.appendChild(SubmitButton.widget);
// ------------------------------------ > Append Button <
//
// ------------------------------------------------------ >> Submit <<
//
// ------------------------------------------------------- >> Close <<
//
// ---------------------------------------- > Varibales <
//
const CloseID = "CloseButtonID";
//
const CloseHaveText = true;
const CloseButtonText = "Close";
//
const CloseHaveIcon = true;
const CloseButtonIcon = "line-md:close-circle-filled";
//
const CloseHaveListener = true;
//
// ---------------------------------------- > Varibales <
//
// ----------------------------------------- > CallBack <
const CloseButton = BTN(
CloseID,
CloseHaveText,
CloseButtonText,
CloseHaveIcon,
CloseButtonIcon,
CloseHaveListener,
CloseListener
);
// ----------------------------------------- > CallBack <
//
// ----------------------------------------- > Listener <
function CloseListener() {
console.log("Clicked");
}
// ----------------------------------------- > Listener <
//
// ------------------------------------ > Append Button <
BG_1.appendChild(CloseButton.widget);
// ------------------------------------ > Append Button <
//
// ------------------------------------------------------- >> Close <<
//
// -------------------------------------------------------- >> Text <<
//
// ---------------------------------------- > Varibales <
//
const TextID = "TextID";
//
const HaveText = true;
const TextContent = "Lorem Ipsum";
//
// ---------------------------------------- > Varibales <
//
// ----------------------------------------- > CallBack <
const Text = BTN(TextID, HaveText, TextContent, false, "", false, () => {});
// ----------------------------------------- > CallBack <
//
// ------------------------------------ > Append Button <
BG_1.appendChild(Text.widget);
// ------------------------------------ > Append Button <
//
// -------------------------------------------------------- >> Text <<
//
// -------------------------------------------------------- >> Icon <<
//
const IconID = "IconID";
//
const HaveIcon = true;
const IconValue = "line-md:emoji-smile-wink-filled";
//
// ---------------------------------------- > Varibales <
//
// ----------------------------------------- > CallBack <
const Icon = BTN(IconID, false, "", HaveIcon, IconValue, false, () => {});
// ----------------------------------------- > CallBack <
//
// ------------------------------------ > Append Button <
BG_1.appendChild(Icon.widget);
// ------------------------------------ > Append Button <
//
// -------------------------------------------------------- >> Icon <<
//
// =================================================================== >> Layer 1 <<
//
// ======================================================================= >> DOM <<
window.addEventListener("DOMContentLoaded", () => {
console.log("hellow World");
});
// ======================================================================= >> DOM <<