js实现切水果小游戏代码
代码语言:html
所属分类:游戏
代码描述:js实现切水果小游戏代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
html, body {
margin: 0;
padding: 0;
touch-action: none;
user-select: none;
}
.bg {
position: absolute;
z-index: 0;
width: 100vw;
height: 100vh;
background: url(//repo.bfw.wiki/bfwrepo/image/5fac6eba1693e.png);
background-size: cover;
transform: scale(1.1);
}
canvas {
position: relative;
z-index: 1;
}
.header {
position: fixed;
z-index: 3;
top: 0;
left: 0;
display: flex;
justify-content: space-between;
margin: 20px;
padding: 13px 20px;
font-size: 15px;
font-family: Lato, Arial;
color: #333;
box-sizing: border-box;
box-shadow: 0 2px 3px rgba(0, 0, 0, .1);
background: rgba(255, 255, 255, .8);
border-radius: 30px;
width: calc(100% - 40px);
text-transform: uppercase;
&.game-over {
color: transparent;
background: black;
&:before {
content: "GAME OVER!";
color: #fff;
text-align: center;
position: absolute;
left: 50%;
transform: translateX(-50%);
}
}
}
</style>
</head>
<body translate="no" >
<div class="bg"></div&.........完整代码请登录后点击上方下载按钮下载查看
网友评论0