-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.embed.html
47 lines (43 loc) · 1.5 KB
/
app.embed.html
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
<style>
div#staff-list div.staff {
margin-bottom: 25px;
display: grid;
grid-template-columns: 2fr 6fr;
}
div#staff-list div.staff img {
width: 150px;
margin-right: 25px;
}
div#staff-list div.staff div {
vertical-align: top;
padding-left: 25px;
}
</style>
<div id="staff-list"></div>
<script>
(function () {
new Promise(function (res, rej) {
var request = new XMLHttpRequest;
request.onload = function () {
res(JSON.parse(this.response));
}
request.open('get', 'https://cdn.deseretnews.com/media/misc/interactive/2018-spring-new-seventy/2018-spring-new-seventy.json');
request.send();
}).then(function (staff) {
var container = document.getElementById('staff-list');
container.innerHTML = null;
for (var x = 0; x < staff.length; x++) {
var person = staff[x];
var elem = document.createElement('div');
elem.classList.add('staff');
var image = document.createElement('img');
image.setAttribute('src', person.image);
var description = document.createElement('div');
description.innerHTML = '<b>' + person.bio.replace(',', '</b>,');
elem.appendChild(image);
elem.appendChild(description);
container.appendChild(elem);
}
});
})();
</script>