-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloadData.js
82 lines (74 loc) · 2.23 KB
/
loadData.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
function loadData() {
let loadingWrapper =
`
<div class="loadingWrapper">
<img class="loading" src='./img/loading.svg'>
</div>
`;
var div = getId('dataList')
div.innerHTML = loadingWrapper;
var template = '';
data.forEach(function(item) {
template +=
`
<div class="song">
<div>
<img class="song-img" src=${item.pic} alt="songPic">
</div>
<div class="song-info">
<h3 class="song-name">
${item.name}
</h3>
<p class="singer-name">${item.artist}</p>
</div>
</div>
`
})
setTimeout(function() {
div.innerHTML = template;
}, 3000)
}
window.onload = function(){
loadData()
}
var data = [{
"pic": "http://p1.music.126.net/wvnIU5Rf3Ty1MnqaBXfY5Q==/109951164839904183.jpg",
"name": "有一件美好的事情将要发生",
"artist": "周深"
}, {
"pic": "http://p1.music.126.net/sHGpFM_nB61mOQo1IEr2uw==/109951164840781495.jpg",
"name": "你的色彩",
"artist": "声入人心男团 Super Vocal"
}, {
"pic": "http://p1.music.126.net/AqZeiCIehJg5oD1tcb42Zg==/109951164839030963.jpg",
"name": "Better Days",
"artist": "OneRepublic"
}, {
"pic": "http://p1.music.126.net/A_1yN6JfaEoLixhl-3yBIg==/109951164833209811.jpg",
"name": "朋友请听好 (谢娜版)",
"artist": "谢娜"
}, {
"pic": "http://p1.music.126.net/kvsbIMsDbA9-UHKk748KTQ==/109951164840870993.jpg",
"name": "Digital Lover (GRAY ver.)",
"artist": "Gray"
}, {
"pic": "http://p1.music.126.net/vKfujmFCW3_2_UDr9E95kQ==/109951164833809104.jpg",
"name": "晚安吧,太阳",
"artist": "金玟岐"
}, {
"pic": "http://p1.music.126.net/bZxfyuY58soD71VGxv6BDQ==/109951164814715844.jpg",
"name": "100 Ways",
"artist": "王嘉尔"
}, {
"pic": "http://p1.music.126.net/cfC3HLKxf-bNpIcZHq9o7A==/109951164824421760.jpg",
"name": "谜",
"artist": "艾福杰尼"
}, {
"pic": "http://p1.music.126.net/-EV4XhJEJn_Ib7ebS1OHhg==/109951164820593469.jpg",
"name": "有可能的夜晚 (Live)",
"artist": "周深"
}, {
"pic": "http://p1.music.126.net/-EV4XhJEJn_Ib7ebS1OHhg==/109951164820593469.jpg",
"name": "Last Dance (Live)",
"artist": "徐佳莹"
}]