You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
210 lines
8.1 KiB
210 lines
8.1 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>抽奖页面</title>
|
|
<style>
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
background: linear-gradient(135deg, #283c86, #45a247); /* 深蓝到绿色的渐变 */
|
|
height: 100vh;
|
|
margin: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: #ffffff;
|
|
transition: background-color 0.5s ease;
|
|
}
|
|
|
|
.container {
|
|
text-align: center;
|
|
background: rgba(50, 50, 70, 0.9); /* 更深的背景色 */
|
|
padding: 40px;
|
|
border-radius: 20px;
|
|
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
backdrop-filter: blur(10px); /* 增加模糊效果 */
|
|
transition: opacity 0.5s ease;
|
|
}
|
|
|
|
#pointsDisplay {
|
|
font-size: 1.5em;
|
|
margin-bottom: 20px;
|
|
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* 文字阴影 */
|
|
}
|
|
|
|
button {
|
|
padding: 15px 30px;
|
|
font-size: 1.2em;
|
|
border: none;
|
|
border-radius: 50px;
|
|
background: linear-gradient(45deg, #fc5c7d, #6a82fb); /* 渐变按钮 */
|
|
color: white;
|
|
cursor: pointer;
|
|
transition: transform 0.2s, background 0.3s, box-shadow 0.3s;
|
|
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
|
|
margin: 10px;
|
|
}
|
|
|
|
button:hover {
|
|
background: linear-gradient(45deg, #e54d84, #5a72d6); /* 悬停时加深 */
|
|
transform: translateY(-3px); /* 悬停时上移效果 */
|
|
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
#loading {
|
|
display: none;
|
|
font-size: 1.5em;
|
|
margin-top: 20px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
<div id="pointsDisplay">当前积分: </div>
|
|
<button id="startLotteryButton">开始抽奖</button>
|
|
<button class="back-button" id="backButton">返回前一页面</button>
|
|
<div id="result"></div>
|
|
<div id="loading">正在加载,请稍候...</div>
|
|
</div>
|
|
|
|
<script>
|
|
const urlParams = new URLSearchParams(window.location.search);
|
|
let student_name = urlParams.get('student_name');
|
|
let student_id = urlParams.get('student_id');
|
|
|
|
const pointsDisplay = document.querySelector('#pointsDisplay');
|
|
const startLotteryButton = document.querySelector('#startLotteryButton');
|
|
const resultDisplay = document.querySelector('#result');
|
|
const backButton = document.getElementById('backButton');
|
|
const loadingIndicator = document.getElementById('loading');
|
|
|
|
// 睡眠函数,让页面跳转更自然
|
|
function sleep(d) {
|
|
return new Promise(resolve => setTimeout(resolve, d));
|
|
}
|
|
|
|
// 全局变量,用于存储用户积分
|
|
let userPoints = null;
|
|
|
|
// 获取该用户的分数
|
|
const fetchStudentScore = async (student_id) => {
|
|
try {
|
|
const response = await fetch('http://localhost:3000/api/get-score', {
|
|
method: 'POST', // 使用 POST 方法
|
|
headers: {
|
|
'Content-Type': 'application/json', // 设置请求体的内容类型
|
|
},
|
|
body: JSON.stringify({ student_id }), // 将 student_id 放入请求体
|
|
});
|
|
|
|
if (!response.ok) {
|
|
alert('分数获取失败');
|
|
return null; // 返回 null 表示获取失败
|
|
}
|
|
|
|
// 直接返回响应体中的数字
|
|
const data = await response.json(); // 直接解析为 JSON
|
|
const score = data.score;
|
|
return score; // 返回数字
|
|
} catch (error) {
|
|
alert('网络请求失败');
|
|
return null; // 返回 null 表示获取失败
|
|
}
|
|
};
|
|
|
|
|
|
// 更新用户分数
|
|
async function updateScore(student_id, points) {
|
|
try {
|
|
const response = await fetch('http://localhost:3000/api/update-score', {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({ student_id, points }),
|
|
});
|
|
|
|
if (!response.ok) {
|
|
throw new Error('网络响应不正常');
|
|
}
|
|
|
|
// 使用 text() 解析响应,得到字符串形式的分数
|
|
const data = await response.text();
|
|
let score = Number(data); // 转换为数字
|
|
return score; // 返回数字
|
|
} catch (error) {
|
|
console.error('分数更新失败:', error);
|
|
return null; // 返回 null 表示更新失败
|
|
}
|
|
}
|
|
|
|
|
|
// 初始化函数,用于设置用户积分
|
|
async function init() {
|
|
userPoints = await fetchStudentScore(student_id); // 获取分数并存储到全局变量
|
|
pointsDisplay.textContent = `${student_name} 的当前积分: ${userPoints}`;
|
|
}
|
|
|
|
// 执行初始化函数
|
|
init();
|
|
|
|
// 设置返回按钮的 URL
|
|
backButton.onclick = () => {
|
|
loadingIndicator.style.display = 'block'; // 显示加载提示
|
|
window.location.href = `choice.html?student_name=${encodeURIComponent(student_name)}&student_id=${encodeURIComponent(student_id)}`;
|
|
};
|
|
|
|
// 开始抽奖
|
|
startLotteryButton.addEventListener('click', async () => {
|
|
if (userPoints >= 2) {
|
|
userPoints = await updateScore(student_id, -2); // 积分-2
|
|
|
|
pointsDisplay.textContent = `${student_name} 的当前积分: ${userPoints}`;
|
|
|
|
// 随机选择奖品
|
|
const prizes = ["跳过权", "再来一次", "什么也没有发生", "加3积分且跳过"];
|
|
const randomPrize = prizes[Math.floor(Math.random() * prizes.length)];
|
|
resultDisplay.textContent = `你赢得了: ${randomPrize}`;
|
|
|
|
// 等待 2 秒以展示结果
|
|
await new Promise(resolve => setTimeout(resolve, 2000));
|
|
loadingIndicator.style.display = 'block'; // 显示加载提示
|
|
|
|
if (randomPrize === '跳过权') {
|
|
await sleep(2000);
|
|
window.location.href = `select.html?student_name=${encodeURIComponent(student_name)}&student_id=${encodeURIComponent(student_id)}`;
|
|
}
|
|
|
|
else if (randomPrize === '再来一次') {
|
|
userPoints = await updateScore(student_id, 2); // 积分返回2
|
|
await sleep(2000);
|
|
window.location.href = `lottery.html?student_name=${encodeURIComponent(student_name)}&student_id=${encodeURIComponent(student_id)}`;
|
|
}
|
|
|
|
else if (randomPrize === '什么也没有发生') {
|
|
await sleep(2000);
|
|
window.location.href = `answer.html?student_name=${encodeURIComponent(student_name)}&student_id=${encodeURIComponent(student_id)}`;
|
|
}
|
|
|
|
else if (randomPrize === '加3积分且跳过') {
|
|
userPoints = await updateScore(student_id, 3); // 积分+3
|
|
await sleep(2000);
|
|
window.location.href = `select.html?student_name=${encodeURIComponent(student_name)}&student_id=${encodeURIComponent(student_id)}`;
|
|
}
|
|
|
|
} else {
|
|
resultDisplay.textContent = "积分不足,无法抽奖!返回回答问题";
|
|
loadingIndicator.style.display = 'block'; // 显示加载提示
|
|
await sleep(2000);
|
|
window.location.href = `answer.html?student_name=${encodeURIComponent(student_name)}&student_id=${encodeURIComponent(student_id)}`;
|
|
}
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|