首页 > 解决方案 > 试图创建一个基本的跳跃恐龙游戏

问题描述

我使用 p5.js 作为在线编辑器,我收到语法错误,我不确定为什么,这对所有这一切都很新,我很确定我把整个事情都写了回来,只是在寻找支持或提示。

.game {
  width: 600px;
  height: 200px;
  border: 1px solid black;
  margin: auto;
}

.dino {
  width: 50px;
  height: 50px;
  background-image: url(img/trex.png);
  background-size: 50px 50px;
  position: relative;
  top: 150px;
}

.jump {
  animation: jump 0.3s linear;
}

@keyframes jump {
  0% {
    top: 150px;
  }

  30% {
    top: 130px;
  }

  50% {
    top: 80px;
  }

  80% {
    top: 130px;
  }

  100% {
    top: 150px;
  }
}

#cactus {
  width: 20px;
  height: 40px;
  position: relative;
  top: 110px;
  left: 580px;

  background-image: url("img/cactus.png");
  background-size: 20px 40px;

  animation: block 1s infinite linear;
}

@keyframes block {
  0% {
    left: 580px;
  }

  100% {
    left: -20px;
  }
}


我使用 p5.js 作为在线编辑器,我收到语法错误,我不确定为什么,这对所有这一切都很新,我很确定我把整个事情都写了回来,只是在寻找支持或提示。

标签: javascript

解决方案


推荐阅读