电商购物车小游戏

代码语言:html

所属分类:游戏

代码描述:电商购物车小游戏,拖动鼠标控制购物车来接厕纸

代码标签:

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">

<style>
body{
  cursor: none;
  background: white;
}
.paper1, .paper2, .paper3, .paper4, .paper5, .paper6, .paper7, .paper8, .paper9, .paper10, .paper11, .paper12, .paper13, .paper14, .paper15, .paper16, .paper17, .paper18, .paper19{
  position: absolute;
  display: flex;
  justify-content: center;
  height: 75px;
  width: 75px;
  border-radius: 40px;
  border: 2px solid black;
  top: -5em;
  background: white;
}
.hole{
  height: 25px;
  width: 25px;
  border: 2px solid #795548;
  border-radius: 100%;
  background: #795548;
  position: absolute;
  top: 1.5em;
}
.package{
  height: 120px;
  width: 100px;
  border: 2px solid black;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  background: #EEEEEE;
}
.logo{
  width: 150px;
  height: 50px;
  background: green;
  position: relative;
  top: 2em;
  text-align: center;
  font-family: sans-serif;
  color: white;
}
.shopping{
  height: 150px;
  width: 150px;
  position: absolute;
  bottom: 0;
  cursor: none;
}
.cart{
  height: 150px;
  width: 150px;
  cursor: none;
  position: absolute;
  bottom: 0;
}
.dropper{
  width: 1300px;
  height: 10px;
  display: flex;
  top: -5em;
  position: absolute;
  left: 6em;
}
.floor{
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: grey;
}
.score{
  position: absolute;
  top: -0.5em;
  right: 1em;
  font-size: 25px;
  font-family: sans-serif;
}
.tcont{
  height: 10px;
  width: 100%;
  font-family: sans-serif;
.........完整代码请登录后点击上方下载按钮下载查看

网友评论0