Added meanings and credits

This commit is contained in:
Robert 2021-01-04 22:38:31 +01:00
parent 17b5482fae
commit 15a835d6a3
6438 changed files with 134433 additions and 366037 deletions

View file

@ -50,10 +50,20 @@
height: 100%;
}
h1, h2 {
body {
font-family: Helvetica, Arial, sans-serif;
}
footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: rgb(212, 212, 212);
color: white;
text-align: center;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
@ -69,9 +79,9 @@
</tr>
</table>
</form>
<span id="kanji_container">Loading</span>
<span id="kanji_container"></span>
<h2 id="kanji_meaning">Meanings currently not available due to CORS issues</h2>
<h2 id="kanji_meaning"></h2>
<script>
// Helper function to get GET parameter from URL
@ -155,17 +165,21 @@
allParts.click(function() {
window.location = window.location.origin + "?kanji=" + $(this).attr("kvg:element");
});
});
$.ajax({
url: "https://kanjiapi.dev/v1/kanji/" + kanji_raw,
dataType: "jsonp",
success: function(res) {
console.log(res);
try {
$("#kanji_meaning").html($("svg").attr("meaning"));
} catch (error) {
$("#kanji_meaning").html("Apparently this has no meaning. Tell me about it.");
}
});
});
}
</script>
<footer>
Vector Graphics supplied by
<a href="http://kanjivg.tagaini.net">KanjiVG</a>
.
</footer>
</body>
</html>