Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
宝璐
✊石头✌️剪刀🖐️布
提交
361ad24e
✊
✊石头✌️剪刀🖐️布
项目概览
宝璐
/
✊石头✌️剪刀🖐️布
与 Fork 源项目一致
Fork自
Freshman小白 / ✊✌️🖐️
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
✊
✊石头✌️剪刀🖐️布
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
361ad24e
编写于
5月 27, 2023
作者:
6
62ba7085b5587201978beaa0
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Auto Commit
上级
ef53fd87
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
141 addition
and
15 deletion
+141
-15
index.html
index.html
+21
-11
script.js
script.js
+60
-0
style.css
style.css
+60
-4
未找到文件。
index.html
浏览文件 @
361ad24e
<!DOCTYPE html>
<html
lang=
"en"
>
<html>
<head>
<meta
charset=
"UTF-8"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<link
href=
"style.css"
rel=
"stylesheet"
type=
"text/css"
/
>
<title>
InsCode
</title
>
<meta
charset=
"UTF-8"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<title>
在线石头剪刀布
</title
>
<link
href=
"style.css"
rel=
"stylesheet"
type=
"text/css"
/
>
</head>
<body>
<div
class=
"container"
>
<img
src=
"src/assets/logo.svg"
alt=
"InsCode"
>
<div>
欢迎来到 InsCode
</div>
<div
id=
"result"
>
<div
id=
"players"
>
<div
id=
"player-icon"
class=
"player"
>
😶
</div>
<div
id=
"computer-icon"
class=
"player"
>
🤖️
</div>
</div>
<script
src=
"script.js"
></script>
<div
id=
"choices"
></div>
<div
id=
"outcome"
></div>
</div>
<div
>
<button
id=
"scissors"
onclick=
"playTurn('scissors')"
>
✌️
</button>
<button
id=
"rock"
onclick=
"playTurn('rock')"
>
✊
</button>
<button
id=
"paper"
onclick=
"playTurn('paper')"
>
🖐️
</button>
</div>
<script
src=
"script.js"
></script>
</body>
</html>
\ No newline at end of file
</html>
script.js
浏览文件 @
361ad24e
// 定义变量,记录双方出拳
let
playerChoice
=
""
;
let
computerChoice
=
""
;
// 定义函数,用于电脑出拳
function
computerPlay
()
{
// 随机生成整数 0、1、2 分别代表剪刀、石头、布
const
choices
=
[
"
scissors
"
,
"
rock
"
,
"
paper
"
];
const
randomIndex
=
Math
.
floor
(
Math
.
random
()
*
3
);
return
choices
[
randomIndex
];
}
// 定义函数,用于开始游戏
function
playTurn
(
choice
)
{
playerChoice
=
choice
;
computerChoice
=
computerPlay
();
const
iconsHTML
=
`
<div>
${
emojiOf
(
playerChoice
)}
</div>
<div>
${
emojiOf
(
computerChoice
)}
</div>
`
;
const
outcomeMessage
=
determineOutcome
(
playerChoice
,
computerChoice
);
document
.
getElementById
(
"
choices
"
).
innerHTML
=
iconsHTML
;
document
.
getElementById
(
"
outcome
"
).
innerHTML
=
outcomeMessage
;
const
playerIcon
=
document
.
querySelector
(
"
#player-icon div
"
);
playerIcon
.
style
.
color
=
"
#3498db
"
;
playerIcon
.
style
.
fontSize
=
"
6rem
"
;
const
computerIcon
=
document
.
querySelector
(
"
#computer-icon div
"
);
computerIcon
.
style
.
color
=
"
#e74c3c
"
;
computerIcon
.
style
.
fontSize
=
"
6rem
"
;
}
// 定义函数,用于将出拳转为 Emoji 显示
function
emojiOf
(
choice
)
{
switch
(
choice
)
{
case
"
scissors
"
:
return
"
✌️
"
;
case
"
rock
"
:
return
"
✊
"
;
case
"
paper
"
:
return
"
🖐️
"
;
default
:
return
""
;
}
}
function
determineOutcome
(
playerChoice
,
computerChoice
)
{
if
(
playerChoice
===
computerChoice
)
{
return
"
打平了!
"
;
}
else
if
(
(
playerChoice
===
"
scissors
"
&&
computerChoice
===
"
paper
"
)
||
(
playerChoice
===
"
rock
"
&&
computerChoice
===
"
scissors
"
)
||
(
playerChoice
===
"
paper
"
&&
computerChoice
===
"
rock
"
)
)
{
return
"
你赢了!
"
;
}
else
{
return
"
你输了!
"
;
}
}
style.css
浏览文件 @
361ad24e
html
{
html
,
body
{
height
:
100%
;
width
:
100%
;
display
:
flex
;
flex-direction
:
column
;
align-items
:
center
;
justify-content
:
center
;
}
.container
{
text-align
:
center
;
padding
:
64px
;
button
{
font-size
:
3rem
;
margin
:
10px
;
padding
:
20px
;
border
:
none
;
border-radius
:
10px
;
cursor
:
pointer
;
box-shadow
:
2px
2px
5px
rgba
(
0
,
0
,
0
,
0.5
);
}
button
:hover
{
box-shadow
:
3px
3px
8px
rgba
(
0
,
0
,
0
,
0.7
);
}
#scissors
{
background-color
:
#f5f5f5
;
color
:
#555
;
}
#rock
{
background-color
:
#e74c3c
;
color
:
white
;
}
#paper
{
background-color
:
#3498db
;
color
:
white
;
}
#result
{
font-size
:
2rem
;
margin
:
10px
;
left
:
50%
;
top
:
50%
;
transform
:
translate
(
-50%
,
-50%
);
}
#players
{
display
:
flex
;
flex-direction
:
row
;
justify-content
:
space-between
;
width
:
80%
;
}
#choices
{
display
:
flex
;
flex-direction
:
row
;
justify-content
:
space-between
;
width
:
80%
;
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录