This repository was archived by the owner on Aug 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbiblewordmap.html
More file actions
64 lines (64 loc) · 1.35 KB
/
biblewordmap.html
File metadata and controls
64 lines (64 loc) · 1.35 KB
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
<html>
<head>
<link rel="stylesheet" href="css/strongscolors.css" />
<style>
body {
margin: 0;
padding: 0;
-moz-column-count: 4;
-moz-column-gap: 1px;
-webkit-column-count: 4;
-webkit-column-gap: 1px;
column-count: 4;
column-gap: 1px
}
h2 {
color: #fff;
display: none;
font-family: Helvetica Neue;
font-weight: 100;
position: absolute;
left: 0;
top: 0;
}
div:hover h2 {
display: block;
}
div {
background: #000;
display: inline-block;
position: relative;
}
span {
display: block;
float: left;
height: 3px;
margin-left: -1px;
margin-top: -1px;
width: 3px;
}
</style>
</head>
<body class="G2962">
</body>
<script src="js/external/jquery-1.7.2.js"></script>
<script src="js/external/json2.js"></script>
<script src="data/greekobject.js"></script>
<script>
$.each(greek, function (bookKey, bookValue) {
var pixels = '';
setTimeout(function () {
pixels += '<div><h2>' + bookKey + '</h2>';
$.each(bookValue, function (chapterKey, chapterValue) {
$.each(chapterValue, function (verseKey, verseValue) {
$.each(verseValue, function (wordKey, wordObject) {
pixels += '<span class="' + wordObject.lemma + '"></span>';
});
});
});
pixels += '</div>';
$('body').append(pixels);
}, 1000);
});
</script>
</html>