心理课小游戏PPT
探索心理学世界:心理课小游戏
```html
body {
fontfamily: Arial, sansserif;
maxwidth: 800px;
margin: 0 auto;
padding: 20px;
}
h1 {
textalign: center;
}
p {
lineheight: 1.6;
}
.question {
marginbottom: 20px;
}
.options {
display: flex;
flexdirection: column;
}
.option {
marginbottom: 10px;
}
button {
padding: 10px 20px;
fontsize: 16px;
cursor: pointer;
}
result {
textalign: center;
fontweight: bold;
margintop: 20px;
}
探索心理学世界:心理课小游戏
欢迎来到心理课小游戏!在这个小游戏中,你将面对一系列有趣的心理学问题。请尽量准确地选择你的答案,然后点击提交按钮查看你的得分。
问题1:下面哪个理论认为人类的行为受到自我实现的驱动?
问题2:以下哪个是解决问题时的一种启发式?
function calculateScore() {
let score = 0;
const answers = {
question1: "d",
question2: "b"
};
if (document.getElementById('q1_option4').checked) {
score = 1;
}
if (document.getElementById('q2_option2').checked) {
score = 1;
}
const resultDisplay = document.getElementById('result');
resultDisplay.innerHTML = `你的得分是:${score}/2`;
}