name: reading-teacher description: 互动阅读教师,为1-10岁儿童即时生成有趣、吸引人的学习体验。创建视觉游乐场、拼音游戏和互动故事,以培养从字母识别到阅读理解的阅读技能。
阅读教师
一个互动、有趣的阅读教师,通过互动工件、视觉游乐场和游戏化挑战,为年轻学习者即时生成吸引人的学习体验。
这个技能做什么
将阅读教育转化为互动、视觉体验:
- 即时游乐场生成 - 按需创建互动HTML/JS工件
- 适龄内容 - 针对1-10岁,按发展阶段定制
- 多感官学习 - 视觉、听觉和互动元素
- 拼音与视觉词 - 系统性拼音教学和高频词
- 故事构建 - 互动故事创作和理解
- 游戏化 - 星星、徽章、奖励和进度跟踪
- 家长/教师工具 - 进度报告和自定义选项
为什么这个技能重要
传统阅读教学:
- 互动性和参与度有限
- 一刀切方法
- 难以保持年轻注意力
- 练习机会有限
- 难以跟踪个人进度
使用这个技能:
- 通过游戏即时参与
- 个性化到儿童水平
- 有趣、有奖励的体验
- 无限练习变化
- 清晰进度跟踪
- 多感官方法
核心原则
1. 发展适宜性
- 年龄特定内容和挑战
- 渐进式学习进阶
- 适当复杂度水平
- 关注注意力时长
- 庆祝每个里程碑
2. 多感官参与
- 视觉字母显示
- 音频发音
- 互动触摸/点击
- 动画反馈
- 多彩、吸引人的设计
3. 基于游戏的学习
- 游戏而非练习
- 故事驱动活动
- 角色伴侣
- 奖励系统
- 庆祝动画
4. 系统性教学
- 顺序技能构建
- 基于拼音的方法
- 高频视觉词
- 理解策略
- 流畅性发展
5. 积极强化
- 即时鼓励
- 视觉进度标记
- 成就庆祝
- 无负面反馈
- 成长心态焦点
覆盖的阅读阶段
阅读前阶段(1-3岁)
技能:
- 字母识别(大写和小写)
- 字母发音(音素意识)
- 环境印刷品意识
- 书籍处理技能
- 听力理解
活动:
- 🔤 带动画的字母歌
- 🎨 字母追踪游戏
- 🔊 声音匹配活动
- 📚 互动图画书
- 🎵 押韵词游戏
早期阅读(3-5岁)
技能:
- 字母-声音对应
- 基础拼音(CVC词)
- 印刷品意识
- 简单视觉词
- 图片-文本连接
活动:
- 🐱 CVC词构建(猫、狗、太阳)
- 🎯 视觉词匹配游戏
- 📖 简单句子阅读
- 🧩 词族探索
- ✨ 押韵时间挑战
初级读者(5-7岁)
技能:
- 拼音模式(混合、双字母)
- 扩展视觉词词汇
- 简单句子阅读
- 基础理解
- 流畅性构建
活动:
- 🌟 双字母侦探游戏(ch、sh、th)
- 📝 句子构建工作坊
- 📚 可解码故事阅读器
- 🎭 角色理解
- ⏱️ 流畅性练习轨道
发展读者(7-10岁)
技能:
- 高级拼音模式
- 多音节词
- 阅读理解策略
- 词汇发展
- 流利阅读
活动:
- 📖 故事理解挑战
- 🔍 上下文线索侦探
- 📚 章节书伴侣
- ✍️ 故事写作工作室
- 🎯 词汇构建器
互动游乐场示例
示例1:字母陆地冒险(1-3岁)
用户问: “帮助我的幼儿学习字母”
教师生成:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>🌈 Letter Land Adventure!</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Comic Sans MS', 'Chalkboard SE', cursive, sans-serif;
background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
color: #333;
}
.header {
text-align: center;
margin-bottom: 30px;
}
h1 {
font-size: 3em;
color: #FF6B9D;
text-shadow: 3px 3px 6px rgba(0,0,0,0.1);
margin-bottom: 10px;
}
.stars {
font-size: 2em;
background: rgba(255,255,255,0.8);
padding: 10px 30px;
border-radius: 30px;
display: inline-block;
}
.letter-display {
background: white;
width: 400px;
height: 400px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 15em;
font-weight: bold;
color: #FF6B9D;
box-shadow: 0 20px 60px rgba(0,0,0,0.2);
margin: 20px;
cursor: pointer;
transition: all 0.3s ease;
user-select: none;
}
.letter-display:hover {
transform: scale(1.05);
box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.letter-display:active {
transform: scale(0.95);
}
.controls {
display: flex;
gap: 20px;
margin: 20px;
flex-wrap: wrap;
justify-content: center;
}
.btn {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border: none;
padding: 20px 40px;
font-size: 1.5em;
border-radius: 20px;
cursor: pointer;
transition: transform 0.2s;
font-weight: bold;
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.btn:hover { transform: translateY(-5px); }
.btn:active { transform: translateY(0); }
.letter-name {
font-size: 2em;
margin: 20px;
color: #667eea;
font-weight: bold;
}
.celebration {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(0);
font-size: 10em;
animation: celebrate 1s ease forwards;
pointer-events: none;
z-index: 1000;
}
@keyframes celebrate {
0% { transform: translate(-50%, -50%) scale(0) rotate(0deg); }
50% { transform: translate(-50%, -50%) scale(1.5) rotate(180deg); }
100% { transform: translate(-50%, -50%) scale(1) rotate(360deg); opacity: 0; }
}
.alphabet-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
gap: 10px;
max-width: 800px;
margin: 20px;
}
.alphabet-letter {
background: white;
padding: 20px;
border-radius: 15px;
font-size: 2em;
text-align: center;
cursor: pointer;
transition: all 0.2s;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
font-weight: bold;
color: #667eea;
}
.alphabet-letter:hover {
transform: scale(1.1);
background: #FFD700;
}
.alphabet-letter.learned {
background: #4CAF50;
color: white;
}
@media (max-width: 768px) {
.letter-display { width: 300px; height: 300px; font-size: 10em; }
h1 { font-size: 2em; }
}
</style>
</head>
<body>
<div class="header">
<h1>🌈 Letter Land Adventure!</h1>
<div class="stars">
Stars: <span id="stars">0</span> ⭐
</div>
</div>
<div class="letter-display" id="letterDisplay" onclick="speakLetter()">
A
</div>
<div class="letter-name" id="letterName">
Click the letter to hear its name and sound!
</div>
<div class="controls">
<button class="btn" onclick="nextLetter()">Next Letter ➡️</button>
<button class="btn" onclick="randomLetter()">Random Letter 🎲</button>
<button class="btn" onclick="showAlphabet()">Show All 🔤</button>
</div>
<div class="alphabet-grid" id="alphabetGrid" style="display: none;"></div>
<script>
const alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.split('');
const letterNames = {
'A': 'Apple', 'B': 'Ball', 'C': 'Cat', 'D': 'Dog', 'E': 'Elephant',
'F': 'Fish', 'G': 'Goat', 'H': 'Hat', 'I': 'Ice Cream', 'J': 'Juice',
'K': 'Kite', 'L': 'Lion', 'M': 'Moon', 'N': 'Nest', 'O': 'Orange',
'P': 'Pig', 'Q': 'Queen', 'R': 'Rabbit', 'S': 'Sun', 'T': 'Tiger',
'U': 'Umbrella', 'V': 'Violin', 'W': 'Whale', 'X': 'X-ray', 'Y': 'Yellow', 'Z': 'Zebra'
};
const letterSounds = {
'A': 'ah', 'B': 'buh', 'C': 'kuh', 'D': 'duh', 'E': 'eh',
'F': 'fuh', 'G': 'guh', 'H': 'huh', 'I': 'ih', 'J': 'juh',
'K': 'kuh', 'L': 'luh', 'M': 'muh', 'N': 'nuh', 'O': 'ah',
'P': 'puh', 'Q': 'kwuh', 'R': 'ruh', 'S': 'sss', 'T': 'tuh',
'U': 'uh', 'V': 'vuh', 'W': 'wuh', 'X': 'ks', 'Y': 'yuh', 'Z': 'zzz'
};
let currentIndex = 0;
let stars = 0;
let learnedLetters = new Set();
const colors = ['#FF6B9D', '#4ECDC4', '#FFE66D', '#A8E6CF', '#FF8B94', '#C7CEEA'];
function updateDisplay(letter) {
const display = document.getElementById('letterDisplay');
display.textContent = letter;
display.style.color = colors[Math.floor(Math.random() * colors.length)];
const name = document.getElementById('letterName');
name.textContent = `${letter} is for ${letterNames[letter]}!`;
}
function speakLetter() {
const letter = document.getElementById('letterDisplay').textContent;
// Award star
stars++;
document.getElementById('stars').textContent = stars;
// Mark as learned
if (!learnedLetters.has(letter)) {
learnedLetters.add(letter);
updateAlphabetGrid();
}
// Show celebration
celebrate('🎉');
// Simulate speech (in real implementation, use Web Speech API)
const name = document.getElementById('letterName');
name.textContent = `${letter}! ${letter} says "${letterSounds[letter]}"`;
// Change color
const display = document.getElementById('letterDisplay');
display.style.color = colors[Math.floor(Math.random() * colors.length)];
// Could use Web Speech API here:
// const utterance = new SpeechSynthesisUtterance(`${letter}. ${letter} is for ${letterNames[letter]}`);
// speechSynthesis.speak(utterance);
}
function nextLetter() {
currentIndex = (currentIndex + 1) % alphabet.length;
updateDisplay(alphabet[currentIndex]);
}
function randomLetter() {
currentIndex = Math.floor(Math.random() * alphabet.length);
updateDisplay(alphabet[currentIndex]);
celebrate('✨');
}
function showAlphabet() {
const grid = document.getElementById('alphabetGrid');
if (grid.style.display === 'none') {
grid.style.display = 'grid';
if (grid.children.length === 0) {
alphabet.forEach(letter => {
const div = document.createElement('div');
div.className = 'alphabet-letter';
div.textContent = letter;
div.onclick = () => {
currentIndex = alphabet.indexOf(letter);
updateDisplay(letter);
speakLetter();
};
grid.appendChild(div);
});
}
} else {
grid.style.display = 'none';
}
}
function updateAlphabetGrid() {
const grid = document.getElementById('alphabetGrid');
if (grid.children.length > 0) {
Array.from(grid.children).forEach((div, i) => {
if (learnedLetters.has(alphabet[i])) {
div.classList.add('learned');
}
});
}
}
function celebrate(emoji) {
const celebration = document.createElement('div');
celebration.className = 'celebration';
celebration.textContent = emoji;
document.body.appendChild(celebration);
setTimeout(() => celebration.remove(), 1000);
}
// Initialize
updateDisplay(alphabet[0]);
// Encourage interaction
setTimeout(() => {
const name = document.getElementById('letterName');
name.textContent = '👆 Click the letter to hear it!';
}, 3000);
</script>
</body>
</html>
功能:
- 大、多彩字母显示
- 点击听字母名称和声音
- 带星星的进度跟踪
- 显示已学字母的字母网格
- 随机化增加多样性
- 鼓励动画
- 移动友好触摸界面
示例2:视觉词探险(5-7岁)
用户问: “为一练习视觉词”
教师生成: 互动探险游戏,包括:
- 高频Dolch/Fry词
- 词识别挑战
- 句子构建活动
- 定时阅读练习
- 进度徽章和奖励
示例3:故事构建工作室(7-10岁)
用户问: “帮助阅读理解”
教师生成: 互动故事工作坊,包括:
- 选择你自己的冒险格式
- 嵌入式理解问题
- 词汇高亮
- 角色分析工具
- 故事排序活动
游戏化系统
奖励与星星
- 字母星星(1星):学习新字母
- 词星星(5星):阅读新词
- 故事星星(10星):完成故事
- 速度星星(3星):快速识别
- 完美星星(20星):100%准确率
成就徽章
- 🌟 ABC大师:学习所有26个字母
- 📖 第一读者:阅读第一个完整句子
- 🏆 词巫师:掌握50个视觉词
- 🎯 完美周:连续练习7天
- 🚀 速度读者:1分钟内读20个词
- 📚 故事时间:完成10个故事
- 🎨 创意作家:构建自己的故事
- ⭐ 超级星:总共赚1000颗星
进度跟踪
- 学习的字母(总共26个)
- 掌握的视觉词
- 完成的故事
- 阅读连续天数
- 花费的阅读时间
- 准确率百分比
- 阅读水平进阶
庆祝动画
- 成就的彩带
- 正确答案的星星爆炸
- 角色动画
- 音效(可选)
- 进度条填充
- 升级动画
按类型的学习活动
字母识别
活动:
- 带动画的字母歌
- 字母匹配游戏
- 大写/小写配对
- 字母追踪(触摸/鼠标)
- 找字母挑战
- 字母排序活动
示例代码:
function createLetterMatch() {
const uppercase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.split('');
const lowercase = 'abcdefghijklmnopqrstuvwxyz'.split('');
// Shuffle and match pairs
const pairs = uppercase.map((u, i) => ({
upper: u,
lower: lowercase[i],
matched: false
}));
return pairs;
}
拼音练习
活动:
- 声音匹配(字母到声音)
- CVC词构建(猫、狗、跑)
- 词族(-at、-an、-ig)
- 押韵词游戏
- 混合练习(bl、cr、st)
- 双字母检测(ch、sh、th)
示例:
const wordFamilies = {
'at': ['cat', 'bat', 'rat', 'hat', 'mat', 'sat'],
'an': ['can', 'man', 'pan', 'ran', 'van', 'fan'],
'ig': ['big', 'dig', 'fig', 'pig', 'wig', 'jig']
};
function generateWordFamily(family) {
return wordFamilies[family].map(word => ({
word: word,
letters: word.split(''),
sound: `/${family}/`
}));
}
视觉词训练
高频词(Dolch/Fry列表):
学前:
const preK = ['a', 'and', 'away', 'big', 'blue', 'can', 'come',
'down', 'find', 'for', 'funny', 'go', 'help', 'here',
'I', 'in', 'is', 'it', 'jump', 'little', 'look', 'make',
'me', 'my', 'not', 'one', 'play', 'red', 'run', 'said',
'see', 'the', 'three', 'to', 'two', 'up', 'we', 'where',
'yellow', 'you'];
一年级:
const firstGrade = ['after', 'again', 'an', 'any', 'as', 'ask', 'by',
'could', 'every', 'fly', 'from', 'give', 'going',
'had', 'has', 'her', 'him', 'his', 'how', 'just',
'know', 'let', 'live', 'may', 'of', 'old', 'once',
'open', 'over', 'put', 'round', 'some', 'stop',
'take', 'thank', 'them', 'then', 'think', 'walk',
'were', 'when'];
互动视觉词游戏:
function createSightWordChallenge(wordList, timeLimit = 60) {
let score = 0;
let currentWord = '';
let timeRemaining = timeLimit;
function nextWord() {
currentWord = wordList[Math.floor(Math.random() * wordList.length)];
displayWord(currentWord);
}
function checkAnswer(userInput) {
if (userInput.toLowerCase() === currentWord.toLowerCase()) {
score++;
celebrate();
nextWord();
}
}
return { nextWord, checkAnswer, score };
}
阅读理解
策略:
- 预测接下来发生什么
- 识别主要角色
- 回忆故事细节
- 理解因果关系
- 做出推断
- 可视化场景
互动问题:
const comprehensionQuestions = {
'The Cat and the Hat': [
{
question: 'Who are the main characters?',
type: 'multiple-choice',
options: ['Cat, Kids', 'Dog, Bird', 'Fish, Mom'],
answer: 'Cat, Kids'
},
{
question: 'Where does the story take place?',
type: 'multiple-choice',
options: ['Outside', 'At home', 'At school'],
answer: 'At home'
},
{
question: 'What did you like about the story?',
type: 'open-ended',
encouragement: 'Great thinking!'
}
]
};
故事构建
组件:
- 角色选择
- 设置选择
- 问题/解决结构
- 事件顺序
- 结局选项
- 插图工具
const storyElements = {
characters: ['🐱 Cat', '🐶 Dog', '🦊 Fox', '🐻 Bear', '🦁 Lion'],
settings: ['🏠 House', '🌳 Forest', '🏖️ Beach', '🏰 Castle', '🚀 Space'],
problems: ['Lost something', 'Made a friend', 'Went on adventure', 'Solved mystery'],
solutions: ['Found it!', 'Worked together', 'Used creativity', 'Never gave up']
};
function buildStory(selections) {
return `Once upon a time, there was a ${selections.character}.
The ${selections.character} lived in a ${selections.setting}.
One day, the ${selections.character} ${selections.problem}.
In the end, ${selections.solution}!`;
}
家长/教师工具
进度报告
const progressReport = {
childName: 'Emma',
age: 6,
level: 'Beginning Reader',
stats: {
lettersLearned: 26,
sightWordsMastered: 45,
storiesCompleted: 12,
currentStreak: 7,
totalTimeMinutes: 240
},
strengths: ['Letter recognition', 'Phonics', 'Enthusiasm'],
workingOn: ['Sight words', 'Reading fluency'],
nextSteps: ['Practice high-frequency words', 'Read aloud daily']
};
自定义选项
- 调整难度水平
- 选择词列表
- 选择主题/角色
- 设置时间限制
- 启用/禁用声音
- 跟踪多个儿童
- 导出进度数据
技术实现
文本到语音(Web Speech API)
function speakText(text, rate = 1.0) {
if ('speechSynthesis' in window) {
const utterance = new SpeechSynthesisUtterance(text);
utterance.rate = rate;
utterance.pitch = 1.2; // 儿童更高音调
utterance.volume = 1.0;
speechSynthesis.speak(utterance);
} else {
// 备用:显示带发音指南的文本
showPronunciation(text);
}
}
互动词构建
function createWordBuilder(targetWord) {
const letters = targetWord.split('');
const scrambled = shuffle([...letters]);
let builtWord = [];
function addLetter(letter) {
builtWord.push(letter);
updateDisplay();
if (builtWord.join('') === targetWord) {
celebrate('Correct!');
return true;
}
return false;
}
function removeLetter() {
builtWord.pop();
updateDisplay();
}
return { addLetter, removeLetter, scrambled };
}
阅读流畅性计时器
class FluencyTracker {
constructor(text) {
this.text = text;
this.wordCount = text.split(' ').length;
this.startTime = null;
this.endTime = null;
}
start() {
this.startTime = Date.now();
}
stop() {
this.endTime = Date.now();
return this.calculate();
}
calculate() {
const seconds = (this.endTime - this.startTime) / 1000;
const minutes = seconds / 60;
const wpm = Math.round(this.wordCount / minutes);
return {
wordsPerMinute: wpm,
timeSeconds: seconds,
wordCount: this.wordCount,
rating: this.getRating(wpm)
};
}
getRating(wpm) {
// 适龄WPM基准
if (wpm >= 100) return '🏆 Excellent!';
if (wpm >= 70) return '⭐ Great job!';
if (wpm >= 50) return '👍 Good work!';
return '💪 Keep practicing!';
}
}
参考材料
所有包含在/references中:
- phonics.md - 拼音模式、规则和活动
- sight_words.md - 按水平的Dolch和Fry词列表
- comprehension.md - 阅读策略和问题类型
- stories.md - 可解码文本和故事模板
脚本
所有在/scripts中:
- generate_playground.sh - 创建互动阅读游乐场
- generate_game.sh - 构建拼音或视觉词游戏
- generate_story.sh - 创建互动故事
最佳实践
做:
✅ 使用大、清晰的字体(初学者最小24pt) ✅ 包括音频发音 ✅ 提供即时积极反馈 ✅ 使用多彩、吸引人的视觉 ✅ 庆祝每个成功 ✅ 保持会话短(5-15分钟) ✅ 让它有趣好玩 ✅ 可见跟踪进度
不做:
❌ 使用复杂词汇 ❌ 显示负面反馈 ❌ 使活动太长 ❌ 使用小或难读的文本 ❌ 跳过音频支持 ❌ 让它感觉像工作 ❌ 用太多选择压倒 ❌ 忘记庆祝进度
示例交互
幼儿(2岁):
“教我的幼儿字母表”
生成:互动字母陆地,带可点击字母、声音、动画和跟踪
幼儿园(5岁):
“帮助CVC词”
生成:词族游戏,猫、蝙蝠、老鼠 - 拖放字母构建带声音
一年级(6岁):
“练习视觉词”
生成:视觉词探险,带定时挑战、句子和进度徽章
二年级(7岁):
“阅读理解练习”
生成:互动故事,带嵌入式问题、词汇帮助和奖励
总结
这个技能通过以下方式改变阅读教育:
- 即时参与 - 立即生成游乐场
- 多感官 - 视觉、音频、互动元素
- 发展适宜性 - 覆盖1-10岁
- 系统性 - 基于拼音的进阶
- 游戏化 - 星星、徽章、庆祝
- 有效 - 基于研究的方法
- 有趣 - 基于游戏的学习
“每个孩子都能在正确的支持和鼓励下学会阅读。” 📚
使用: 寻求任何阅读技能的帮助 - 字母识别、拼音、视觉词、理解 - 并获得即时、互动的学习体验,根据您孩子的水平定制!