-
Notifications
You must be signed in to change notification settings - Fork 0
/
learning-app.js
120 lines (83 loc) · 3.87 KB
/
learning-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
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
export default {
data() {
return {
learning_sections : {
coding_section : {
id : 'section-0',
title: 'PRACTICE',
cards: [
{
id: 'shapes',
title: 'SHAPES AND COLORS',
description: [
'Draw triangles, rectangles.',
'Draw regular polygons and circles.',
'Set position and size with units',
'Define color patterns',
],
links: {
repository: 'https://github.com/under-the-hood-learning/web-labs/tree/main/webGL2/01_shapes',
video:'https://www.youtube.com/@CodingWithClodo-tw5gg',
article:'https://medium.com/',
online_demo: 'https://under-the-hood-learning.github.io/web-labs/webGL2/01_shapes/index.html',
}
},
{
id: 'motion',
title: 'MOTION',
description: [
'Draw triangles, rectangles.',
'Draw regular polygons and circles.',
'Set position and size with units',
'Define color patterns',
],
links: {
repository: 'https://github.com/under-the-hood-learning/web-labs/tree/main/webGL2/02_motion',
video:'https://www.youtube.com/@CodingWithClodo-tw5gg',
article:'https://medium.com/',
online_demo: 'https://under-the-hood-learning.github.io/web-labs/webGL2/02_motion/index.html',
}
},
{
id: '3D',
title: '3D PRINCIPLES',
description: [
'Draw triangles, rectangles.',
'Draw regular polygons and circles.',
'Set position and size with units',
'Define color patterns',
],
links: {
repository: 'https://github.com/under-the-hood-learning/web-labs/tree/main/webGL2/03_3D',
video:'https://www.youtube.com/@CodingWithClodo-tw5gg',
article:'https://medium.com/',
online_demo: 'https://under-the-hood-learning.github.io/web-labs/webGL2/03_3D/index.html',
}
},
]
},
theory_section : {
id : 'section-1',
title: 'THEORY',
cards: [
]
},
history_section : {
id : 'section-1',
title: 'HISTORY',
cards: [
]
},
}
}
},
template:
/*html*/
`
<headerA></headerA>
<librarySelector></librarySelector>
<learningSection v-for="section in learning_sections" :section="section"></learningSection>
<recommendations></recommendations>
<footerA></footerA>
`
}