Added support for six elements
This commit is contained in:
parent
80cb6d7f57
commit
6d60fca4e6
10
index.html
10
index.html
|
@ -10,6 +10,10 @@
|
||||||
|
|
||||||
<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>
|
||||||
|
path {
|
||||||
|
stroke: white;
|
||||||
|
}
|
||||||
|
|
||||||
.part {
|
.part {
|
||||||
transition: stroke-width 100ms;
|
transition: stroke-width 100ms;
|
||||||
}
|
}
|
||||||
|
@ -34,6 +38,10 @@
|
||||||
stroke: rgb(239, 60, 255);
|
stroke: rgb(239, 60, 255);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.six {
|
||||||
|
stroke: rgb(0, 255, 200);
|
||||||
|
}
|
||||||
|
|
||||||
.on {
|
.on {
|
||||||
stroke-width: 4;
|
stroke-width: 4;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
@ -182,7 +190,7 @@
|
||||||
// Set value of input field to Kanji
|
// Set value of input field to Kanji
|
||||||
$("form input[name=kanji]").val(kanji);
|
$("form input[name=kanji]").val(kanji);
|
||||||
|
|
||||||
const number_words = ["one", "two", "three", "four", "five"]
|
const number_words = ["one", "two", "three", "four", "five", "six"]
|
||||||
var i = 0;
|
var i = 0;
|
||||||
allParts.each(function () {
|
allParts.each(function () {
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in a new issue