作品一覧に戻る
007. 呪いを外から掛ける

007. 呪いを外から掛ける

uekkie 03/18 16:44
アプリを動かす
コードを見る
<style>
#box {
  width: 100px;
  height: 100px;
  background: steelblue;
  margin-top: 16px;
}

.animated {
  animation: henshin 1s infinite alternate;
}

@keyframes henshin {
  from {
    background: steelblue;
    transform: scale(1);
  }
  to {
    background: tomato;
    transform: scale(1.5);
  }
}

</style>
<button id="castBtn">呪いをかけろ</button>
<div id="box"></div>
const btn = document.querySelector('#castBtn');
const box = document.querySelector('#box');

btn.addEventListener('click', function() {
  box.classList.add('animated');
});