style.css 638 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .kana {
  2. display: inline-block;
  3. position: relative;
  4. color: black;
  5. }
  6. .kana::after {
  7. display: inline-block;
  8. content: attr(data-text);
  9. position: absolute;
  10. left: 0;
  11. top: 0;
  12. color: red;
  13. font-weight: bold;
  14. overflow: hidden;
  15. width: 0px;
  16. transition: width 0.1s;
  17. }
  18. .kana.half::after {
  19. width: 50%;
  20. }
  21. .kana.full::after {
  22. width: 100%;
  23. }
  24. .romaji {
  25. display: inline-block;
  26. }
  27. .romaji.error {
  28. animation-name: pulse;
  29. animation-duration: 0.5s;
  30. animation-iteration-count: 1;
  31. }
  32. @keyframes pulse {
  33. 0% {
  34. transform: scale(1, 1)
  35. }
  36. 50% {
  37. transform: scale(2, 2)
  38. }
  39. 100% {
  40. transform: scale(1, 1)
  41. }
  42. }