-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebBgDB.js
81 lines (80 loc) · 2.95 KB
/
webBgDB.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
const webBgData = [
{//0
'ID': 'MR1',
'Name': 'Matrix Rain',
'URL': 'https://satyamv7.github.io/webBackground/server/BG/MR1/',
'Author': '', // Specifying the author is optional
'AuthorURL': '' // Specifying the author url is optional
},
{//1
'ID': 'MU1',
'Name': 'Medusae',
'URL': 'https://satyamv7.github.io/webBackground/server/BG/MU1/',
'Author': '', // Specifying the author is optional
'AuthorURL': '' // Specifying the author url is optional
},
{//2
'ID': 'PT1',
'Name': 'Periodic Table',
'URL': 'https://satyamv7.github.io/webBackground/server/BG/PT1/',
'Author': '', // Specifying the author is optional
'AuthorURL': '' // Specifying the author url is optional
},
{//3
'ID': 'PC1',
'Name': 'Protein Clouds',
'URL': 'https://satyamv7.github.io/webBackground/server/BG/PC1/',
'Author': '', // Specifying the author is optional
'AuthorURL': '' // Specifying the author url is optional
},
{//4
'ID': 'RN1',
'Name': 'Rain',
'URL': 'https://satyamv7.github.io/webBackground/server/BG/RN1/',
'Author': '', // Specifying the author is optional
'AuthorURL': '' // Specifying the author url is optional
},
{//5
'ID': 'SP1',
'Name': 'Sea Parallax',
'URL': 'https://satyamv7.github.io/webBackground/server/BG/SP1/',
'Author': '', // Specifying the author is optional
'AuthorURL': '' // Specifying the author url is optional
},
{//6
'ID': 'SS1',
'Name': 'Simple System',
'URL': 'https://satyamv7.github.io/webBackground/server/BG/SS1/',
'Author': '', // Specifying the author is optional
'AuthorURL': '' // Specifying the author url is optional
},
{//7
'ID': 'T25H',
'Name': 'The 25th Hour',
'URL': 'https://satyamv7.github.io/webBackground/server/BG/T25H/',
'Author': 'Louis Coyle', // Specifying the author is optional
'AuthorURL': 'https://louie.co.nz/' // Specifying the author url is optional
},
{//8
'ID': 'TH1',
'Name': 'The Hill',
'URL': 'https://satyamv7.github.io/webBackground/server/BG/TH1/',
'Author': '', // Specifying the author is optional
'AuthorURL': '' // Specifying the author url is optional
},
{//9
'ID': 'TL1',
'Name': 'Triangles And Light',
'URL': 'https://satyamv7.github.io/webBackground/server/BG/TL1/',
'Author': '', // Specifying the author is optional
'AuthorURL': '' // Specifying the author url is optional
},
{//10
'ID': 'WFS1',
'Name': 'WebGL Fluid Simulation',
'URL': 'https://satyamv7.github.io/webBackground/server/BG/WFS1/',
'Author': '', // Specifying the author is optional
'AuthorURL': '' // Specifying the author url is optional
},
]
export { webBgData }