写了一个抽替身的网站HTML
本帖最后由 AtmosHim 于 2023-10-10 07:40 编辑如图,随便写写玩的[哔哩_doge]
大家可以在评论区留下你们喜欢的替身呀~
压缩包密码:114514
这个软件是什么 溢溢 发表于 2023-10-9 20:35
这个软件是什么
AIDE,适合Java和Android 压缩包加密是为什么 速辉归 发表于 2023-10-10 06:18
压缩包加密是为什么
密码114514 UI太简洁了,可以美化一下[贴吧_滑稽]
<!DOCTYPE html>
<html>
<head>
<title>抽取替身</title>
<style>
body {
background-color: #f2f2f2; /* 背景颜色 */
font-family: Arial, sans-serif; /* 字体样式 */
}
h1 {
color: #333333; /* 标题颜色 */
text-align: center; /* 标题居中 */
}
.prize-container {
display: flex;
justify-content: center;
align-items: center;
margin-top: 50px;
}
.prize {
width: 200px;
padding: 20px; /* 内边距 */
border: 1px solid #cccccc; /* 边框样式 */
border-radius: 5px; /* 圆角边框 */
text-align: center; /* 文字居中 */
}
button {
background-color: #4CAF50; /* 按钮背景颜色 */
color: white; /* 按钮文字颜色 */
border: none; /* 无边框 */
padding: 10px 20px; /* 内边距 */
text-align: center; /* 文字居中 */
text-decoration: none; /* 无下划线 */
display: inline-block; /* 行内块元素 */
font-size: 16px; /* 字体大小 */
margin: 20px 2px; /* 外边距 */
cursor: pointer; /* 鼠标指针样式为手指形状 */
border-radius: 5px; /* 圆角按钮 */
}
button:hover {
background-color: #45a049; /* 鼠标悬停时的背景颜色 */
}
</style>
</head>
<body>
<h1>抽取你的替身</h1>
<button id="drawButton">点击抽取</button>
<p id="result"></p>
稍微参考一下吧,哈哈哈[贴吧_滑稽]
页: [1]