-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspace_bot.html2
More file actions
50 lines (49 loc) · 1.51 KB
/
Copy pathspace_bot.html2
File metadata and controls
50 lines (49 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="fa">
<head>
<meta charset="UTF-8">
<title>قسمت ۲: زندگی روزمره</title>
<style>
body {
background-color: #fffbe6;
font-family: sans-serif;
text-align: center;
padding: 50px;
}
button {
font-size: 18px;
padding: 10px 20px;
background-color: #ff9800;
color: white;
border: none;
border-radius: 8px;
cursor: pointer;
}
#story {
margin-top: 30px;
font-size: 20px;
line-height: 2;
color: #333;
white-space: pre-line;
}
</style>
</head>
<body>
<h1>🥒 قسمت ۲: زندگی روزمره</h1>
<button onclick="playStory()">پخش داستان</button>
<div id="story"></div>
<script>
function playStory() {
const text = `خیار با خواهر و برادرش بازی میکرد، به حرف پدر و مادرش گوش میداد،
و با رفیقاش خیلی خوشگذرون بود.
هر روز با لبخند از خواب بیدار میشد، به همه کمک میکرد، و دلش پر از مهربونی بود.
زندگی سادهای داشت، ولی پر از عشق و ارتباط.
همه دوستش داشتن، چون خیار فقط یه ربات نبود — یه همراه واقعی بود.`;
document.getElementById("story").innerText = text;
const utter = new SpeechSynthesisUtterance(text);
utter.lang = "fa-IR";
speechSynthesis.speak(utter);
}
</script>
</body>
</html>