AnkiNoteTemplate/templates/Japanese kana/Production/front.html

12 lines
352 B
HTML
Raw Normal View History

2021-11-27 14:57:09 +00:00
<div class="front">
<span id="charType">{{edit:Hint}}</span>
{{edit:Romaji}}{{edit:Pronunciation}}
</div>
<script>
const hint = document.getElementById("charType");
if (hint && hint.innerHTML == "katakana")
hint.style.color = "#ff6207";
else if (hint.innerHTML == "hiragana")
hint.style.color = "#637c8b";
</script>