Japanese Rock Paper Scissors

December 24, 2021

A rock paper scissors game in Japanese coded in Javascript.  The logo was fun to make.  It's the character for fist and looks like this: 拳 

I used a square div around the character and then rounded the edges into a circle through the CSS like this:

.logo {
      height: 100px;
      width: 100px;
      background-color: #bbb;
      font-size: 75px;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
  }


Play a computer in rock paper scissors!


Translations
  • じゃんけんぽん game of rock, paper, scissors
  • 石 rock
  • 紙 paper
  • 鋏 scissors
  • 人間 human
  • コンピュータ computer
  • 開始 start
  • 成功 success
  • 失敗 fail
  • もう一回 one more time