hitode909の日記

以前はプログラミング日記でしたが、今は子育て日記です

ロケーションバーでアニメーションする

ロケーションバーでアニメーションするのをtwitterで見かけて、いいなと思ったのでやってみる。

f:id:hitode909:20200813140838g:plain


<script>
  (() => {
    let chars = ["🌕", "🌖", "🌗", "🌘", "🌑", "🌒", "🌓", "🌔"];
    setInterval(() => {
      history.replaceState({}, '', location.pathname+location.search+'#'+chars[0]);
      chars.push(chars.shift());
    }, 100);
  })();
</script>