Changed Kanji styling

This commit is contained in:
Robert 2021-01-04 20:41:52 +01:00
parent 8268791c67
commit 17b5482fae

View file

@ -8,18 +8,30 @@
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css"> <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css">
<style> <style>
.part { .part {
transition: stroke 300ms; transition: stroke-width 100ms;
}
.one {
stroke: rgb(255, 88, 88);
}
.two {
stroke: rgb(53, 206, 53)
}
.three {
stroke: rgb(47, 172, 255)
}
.four {
stroke:rgb(252, 193, 0)
} }
.on { .on {
stroke: rgb(61, 202, 61); stroke-width: 4;
cursor: pointer; cursor: pointer;
} }
.off {
stroke: rgb(255, 88, 88);
}
span { span {
display: inline-block; display: inline-block;
width: 50vh; width: 50vh;
@ -118,15 +130,24 @@
$.loadSVG(hex).then( response => { // Load the SVG of the Kanji $.loadSVG(hex).then( response => { // Load the SVG of the Kanji
var allParts = $.getHighestElements($("svg > g > g"), "kvg:element"); // Get top-level elements var allParts = $.getHighestElements($("svg > g > g"), "kvg:element"); // Get top-level elements
allParts.addClass("off"); // Give all elements class "off" (for unselected styling)
allParts.addClass("part"); // Give them class "part" as well (for default styling) allParts.addClass("part"); // Give them class "part" as well (for default styling)
const number_words = ["one", "two", "three", "four"]
var i = 0;
allParts.each(function () {
try {
$(this).addClass(number_words[i++]);
} catch (error) {
// Do nothing, this shouldn't ever be hit but just in case
}
});
allParts.on({ // For each element allParts.on({ // For each element
mouseenter: function () { // MouseEnter event: off -> on mouseenter: function () { // MouseEnter event: give on class
$(this).switchClass("off", "on"); $(this).addClass("on");
}, },
mouseleave: function () { // MouseLeave event: on -> off mouseleave: function () { // MouseLeave event: remove on class
$(this).switchClass("on", "off"); $(this).removeClass("on");
}, },
}); });