146 lines
4.1 KiB
HTML
146 lines
4.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Kanji</title>
|
|
|
|
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css">
|
|
<style>
|
|
.part {
|
|
transition: stroke 300ms;
|
|
}
|
|
|
|
.on {
|
|
stroke: rgb(61, 202, 61);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.off {
|
|
stroke: rgb(255, 88, 88);
|
|
}
|
|
|
|
span {
|
|
display: inline-block;
|
|
width: 50vh;
|
|
height: 50vh;
|
|
background-size: cover;
|
|
border-style: solid;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
input {
|
|
font-size: 1em;
|
|
}
|
|
|
|
svg {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
h1, h2 {
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
</style>
|
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
|
|
<script src="//code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
|
|
</head>
|
|
<body>
|
|
<h1>Enter a Kanji</h1>
|
|
<form>
|
|
<table>
|
|
<tr>
|
|
<td><input type="text" name="kanji"></td>
|
|
<td><input type="submit"></td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
<span id="kanji_container">Loading</span>
|
|
|
|
<h2 id="kanji_meaning">Meanings currently not available due to CORS issues</h2>
|
|
|
|
<script>
|
|
$.urlParam = function(name){
|
|
var results = new RegExp('[\?&]' + name + '=([^&#]*)').exec(window.location.href);
|
|
try {
|
|
return results[1] || 0;
|
|
} catch (error) {
|
|
return undefined;
|
|
}
|
|
|
|
}
|
|
|
|
$.loadSVG = function(hex) {
|
|
return $.ajax({
|
|
url: "assets/0" + hex + ".svg",
|
|
dataType: "text",
|
|
success: function(data) {
|
|
$("#kanji_container").html(data);
|
|
$("svg > g:nth-child(2)").remove();
|
|
$("span").contents().filter((_, el) => el.nodeType === 3).remove();
|
|
}
|
|
});
|
|
}
|
|
|
|
$.getHighestElements = function(startPoint, selector, child = false) {
|
|
var elems = [];
|
|
startPoint.children('g').each(function () {
|
|
if(typeof $(this).attr(selector) !== typeof undefined) {
|
|
elems.push($(this));
|
|
} else {
|
|
$.merge(elems, $.getHighestElements($(this), selector, true));
|
|
}
|
|
});
|
|
|
|
if(child)
|
|
return elems;
|
|
else
|
|
return $(elems).map(function() { return this.toArray(); });
|
|
}
|
|
|
|
const kanji_raw = $.urlParam('kanji');
|
|
if(kanji_raw != undefined)
|
|
{
|
|
const kanji = decodeURIComponent(kanji_raw);
|
|
|
|
$("form input[name=kanji]").val(kanji);
|
|
|
|
var hex = kanji.charCodeAt(0).toString(16);
|
|
$.loadSVG(hex).then( response => {
|
|
|
|
var allParts = $.getHighestElements($("svg > g > g"), "kvg:element");
|
|
|
|
allParts.addClass("off");
|
|
allParts.addClass("part");
|
|
|
|
allParts.on({
|
|
mouseenter: function () {
|
|
$(this).switchClass("off", "on");
|
|
$(this).find('g.part').switchClass("off", "on");
|
|
},
|
|
mouseleave: function () {
|
|
$(this).switchClass("on", "off");
|
|
$(this).find('g.part').switchClass("on", "off");
|
|
},
|
|
});
|
|
|
|
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);
|
|
}
|
|
});
|
|
}
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|