@aiyiran/myclaw 1.1.24 → 1.1.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.local.json +25 -1
- package/assets/myclaw-artifacts.js +1070 -126
- package/assets/myclaw-inject.js +913 -121
- package/delete_agents.js +268 -0
- package/index.js +361 -20
- package/package.json +1 -1
- package/patches/patch-manifest.json +10 -0
- package/server/sync_workspace.py +444 -14
- package/skills/yiran-course-template-pipeline/README.md +127 -0
- package/skills/yiran-course-template-pipeline/SKILL.md +65 -0
- package/skills/yiran-course-template-pipeline/assets/a100-teacher.example.html +66 -0
- package/skills/yiran-course-template-pipeline/assets/student-template.html +64 -0
- package/skills/yiran-course-template-pipeline/assets/teacher-portrait-demo.html +105 -0
- package/skills/yiran-course-template-pipeline/assets/teacher-task-view.html +110 -0
- package/skills/yiran-course-template-pipeline/prompts//351/230/266/346/256/2651-demo/347/224/237/346/210/220.md +92 -0
- package/skills/yiran-course-template-pipeline/prompts//351/230/266/346/256/2652-student/347/224/237/346/210/220.md +115 -0
- package/skills/yiran-course-template-pipeline/prompts//351/230/266/346/256/2653-teacher/347/224/237/346/210/220.md +131 -0
- package/skills/yiran-course-template-pipeline/prompts//351/230/266/346/256/2654-/346/211/223/345/214/205/350/220/275/347/233/230.md +77 -0
- package/skills/yiran-course-template-pipeline/references/student-example.json +38 -0
- package/skills/yiran-course-template-pipeline/references/student-fields.md +195 -0
- package/skills/yiran-course-template-pipeline/references/student-scaffold.json +34 -0
- package/skills/yiran-course-template-pipeline/references/teacher-fields.md +265 -0
- package/skills/yiran-course-template-pipeline/references/teacher-scaffold.json +25 -0
- package/skills/yiran-course-template-pipeline/scripts/build_template_views.py +125 -0
- package/skills/yiran-course-template-pipeline/scripts/move_template_task.py +59 -0
- package/skills/yiran-course-template-pipeline/scripts/render_student_page.py +52 -0
- package/skills/yiran-course-template-pipeline/scripts/render_teacher_view.py +108 -0
- package/skills/yiran-playground-template-use/SKILL.md +105 -0
- package/skills/yiran-playground-template-use/prompts/remix-handoff.txt +11 -0
- package/skills/yiran-playground-template-use/scripts/build_template_index.py +103 -0
- package/skills/yiran-playground-template-use/scripts/deploy_template.py +34 -0
- package/skills/yiran-playground-template-use/scripts/deploy_to_workspace.py +211 -0
- package/skills/yiran-playground-template-use/scripts/prepare_playgrounds.py +39 -0
- package/skills/yiran-playground-template-use/scripts/query_template.py +171 -0
- package/skills/yiran-playground-template-use/scripts/run_playgrounds_flow.py +44 -0
- package/skills/yiran-playground-template-use/scripts/start_tui_handoff.py +77 -0
- package/skills/yiran-playground-template-use/search-agent-prompt.md +39 -0
- package/skills/yiran-playground-template-use/template-index.json +136 -0
- package/skills/yiran-playground-template-use/template-index.md +38 -0
- package/skills/yiran-playground-template-use/templates/a100_/347/273/231/344/276/235/347/204/266/350/200/201/345/270/210/350/256/276/350/256/241/344/270/200/344/270/252AI/347/224/273/345/203/217/__demo__.html +140 -0
- package/skills/yiran-playground-template-use/templates/a100_/347/273/231/344/276/235/347/204/266/350/200/201/345/270/210/350/256/276/350/256/241/344/270/200/344/270/252AI/347/224/273/345/203/217/__student-view__.html +64 -0
- package/skills/yiran-playground-template-use/templates/a100_/347/273/231/344/276/235/347/204/266/350/200/201/345/270/210/350/256/276/350/256/241/344/270/200/344/270/252AI/347/224/273/345/203/217/__student__.json +38 -0
- package/skills/yiran-playground-template-use/templates/a100_/347/273/231/344/276/235/347/204/266/350/200/201/345/270/210/350/256/276/350/256/241/344/270/200/344/270/252AI/347/224/273/345/203/217/__teacher-view__.html +52 -0
- package/skills/yiran-playground-template-use/templates/a100_/347/273/231/344/276/235/347/204/266/350/200/201/345/270/210/350/256/276/350/256/241/344/270/200/344/270/252AI/347/224/273/345/203/217/__teacher__.json +36 -0
- package/skills/yiran-playground-template-use/templates/a100_/347/273/231/344/276/235/347/204/266/350/200/201/345/270/210/350/256/276/350/256/241/344/270/200/344/270/252AI/347/224/273/345/203/217/index.html +61 -0
- package/skills/yiran-playground-template-use/templates/a101_/345/201/2323/345/274/240/345/220/214/344/270/273/351/242/230/345/233/276/347/211/207/__demo__.html +131 -0
- package/skills/yiran-playground-template-use/templates/a101_/345/201/2323/345/274/240/345/220/214/344/270/273/351/242/230/345/233/276/347/211/207/__student-view__.html +64 -0
- package/skills/yiran-playground-template-use/templates/a101_/345/201/2323/345/274/240/345/220/214/344/270/273/351/242/230/345/233/276/347/211/207/__student__.json +34 -0
- package/skills/yiran-playground-template-use/templates/a101_/345/201/2323/345/274/240/345/220/214/344/270/273/351/242/230/345/233/276/347/211/207/__teacher-view__.html +52 -0
- package/skills/yiran-playground-template-use/templates/a101_/345/201/2323/345/274/240/345/220/214/344/270/273/351/242/230/345/233/276/347/211/207/__teacher__.json +34 -0
- package/skills/yiran-playground-template-use/templates/a103_/345/201/232/344/270/200/344/270/252/344/273/213/347/273/215/351/241/265/351/235/242/__demo__.html +77 -0
- package/skills/yiran-playground-template-use/templates/a103_/345/201/232/344/270/200/344/270/252/344/273/213/347/273/215/351/241/265/351/235/242/__student-view__.html +64 -0
- package/skills/yiran-playground-template-use/templates/a103_/345/201/232/344/270/200/344/270/252/344/273/213/347/273/215/351/241/265/351/235/242/__student__.json +38 -0
- package/skills/yiran-playground-template-use/templates/a103_/345/201/232/344/270/200/344/270/252/344/273/213/347/273/215/351/241/265/351/235/242/__teacher-view__.html +52 -0
- package/skills/yiran-playground-template-use/templates/a103_/345/201/232/344/270/200/344/270/252/344/273/213/347/273/215/351/241/265/351/235/242/__teacher__.json +34 -0
- package/skills/yiran-playground-template-use/templates/b100_/345/201/232/344/270/200/344/270/252/346/214/211/351/222/256/351/241/265/351/235/242/__demo__.html +162 -0
- package/skills/yiran-playground-template-use/templates/b100_/345/201/232/344/270/200/344/270/252/346/214/211/351/222/256/351/241/265/351/235/242/__student-view__.html +64 -0
- package/skills/yiran-playground-template-use/templates/b100_/345/201/232/344/270/200/344/270/252/346/214/211/351/222/256/351/241/265/351/235/242/__student__.json +34 -0
- package/skills/yiran-playground-template-use/templates/b100_/345/201/232/344/270/200/344/270/252/346/214/211/351/222/256/351/241/265/351/235/242/__teacher-view__.html +52 -0
- package/skills/yiran-playground-template-use/templates/b100_/345/201/232/344/270/200/344/270/252/346/214/211/351/222/256/351/241/265/351/235/242/__teacher__.json +34 -0
- package/skills/yiran-playground-template-use/templates/c100_/347/273/231/345/260/217/347/273/204/344/275/234/345/223/201/345/201/232/344/270/200/346/254/241/345/260/217/344/277/256/346/224/271/__demo__.html +180 -0
- package/skills/yiran-playground-template-use/templates/c100_/347/273/231/345/260/217/347/273/204/344/275/234/345/223/201/345/201/232/344/270/200/346/254/241/345/260/217/344/277/256/346/224/271/__student-view__.html +64 -0
- package/skills/yiran-playground-template-use/templates/c100_/347/273/231/345/260/217/347/273/204/344/275/234/345/223/201/345/201/232/344/270/200/346/254/241/345/260/217/344/277/256/346/224/271/__student__.json +38 -0
- package/skills/yiran-playground-template-use/templates/c100_/347/273/231/345/260/217/347/273/204/344/275/234/345/223/201/345/201/232/344/270/200/346/254/241/345/260/217/344/277/256/346/224/271/__teacher-view__.html +52 -0
- package/skills/yiran-playground-template-use/templates/c100_/347/273/231/345/260/217/347/273/204/344/275/234/345/223/201/345/201/232/344/270/200/346/254/241/345/260/217/344/277/256/346/224/271/__teacher__.json +41 -0
- package/skills/yiran-playground-template-use/templates/c100_/347/273/231/345/260/217/347/273/204/344/275/234/345/223/201/345/201/232/344/270/200/346/254/241/345/260/217/344/277/256/346/224/271/demo.html +180 -0
- package/skills/yiran-playground-template-use/templates/c100_/347/273/231/345/260/217/347/273/204/344/275/234/345/223/201/345/201/232/344/270/200/346/254/241/345/260/217/344/277/256/346/224/271/index.html +121 -0
- package/skills/yiran-playground-template-use/templates/c100_/347/273/231/345/260/217/347/273/204/344/275/234/345/223/201/345/201/232/344/270/200/346/254/241/345/260/217/344/277/256/346/224/271//345/260/217/347/273/204/345/220/211/347/245/245/347/211/251_26.png +0 -0
- package/skills/yiran-playground-template-use/templates/c100_/347/273/231/345/260/217/347/273/204/344/275/234/345/223/201/345/201/232/344/270/200/346/254/241/345/260/217/344/277/256/346/224/271//345/260/217/347/273/204/345/233/276/345/275/242/346/240/207/345/277/227_83.png +0 -0
- package/skills/yiran-playground-template-use/templates/c100_/347/273/231/345/260/217/347/273/204/344/275/234/345/223/201/345/201/232/344/270/200/346/254/241/345/260/217/344/277/256/346/224/271//347/217/255/347/272/247/345/260/217/347/273/204/345/276/275/347/253/240_47.png +0 -0
- package/skills/yiran-skill-media/SKILL.md +6 -15
- package/skills/yiran-skill-media/scripts/generate.py +47 -18
- package/skills/yiran-skill-media/scripts/generation_log.json +1 -56
- package/skills/yiran-skill-media/scripts/providers/__pycache__/__init__.cpython-311.pyc +0 -0
- package/skills/yiran-skill-media/scripts/providers/__pycache__/__init__.cpython-37.pyc +0 -0
- package/skills/yiran-skill-media/scripts/providers/__pycache__/jimeng_image.cpython-37.pyc +0 -0
- package/skills/yiran-skill-media/scripts/providers/__pycache__/jimeng_video.cpython-311.pyc +0 -0
- package/skills/yiran-skill-media/scripts/providers/__pycache__/jimeng_video.cpython-37.pyc +0 -0
- package/skills/yiran-skill-media/scripts/providers/__pycache__/minimax_image.cpython-37.pyc +0 -0
- package/skills/yiran-skill-media/scripts/providers/__pycache__/minimax_music.cpython-37.pyc +0 -0
- package/skills/yiran-skill-media/scripts/providers/__pycache__/minimax_video.cpython-311.pyc +0 -0
- package/skills/yiran-skill-media/scripts/providers/__pycache__/minimax_video.cpython-37.pyc +0 -0
- package/skills/yiran-skill-media/scripts/providers/__pycache__/vapi_image.cpython-37.pyc +0 -0
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"任务类别": "A",
|
|
3
|
+
"任务编号": "100",
|
|
4
|
+
"任务名称": "给依然老师设计一个AI画像",
|
|
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
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="zh-CN">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>给依然老师设计一个AI画像</title>
|
|
7
|
+
</head>
|
|
8
|
+
<body>
|
|
9
|
+
|
|
10
|
+
<!--
|
|
11
|
+
这段内容在你完成第一版后会被清空。
|
|
12
|
+
你可以自由发挥,完成以下目标:
|
|
13
|
+
|
|
14
|
+
★ 一星:完成一张老师图片。
|
|
15
|
+
★★ 二星:把图片放进网页里,并完成发布。
|
|
16
|
+
★★★ 三星:把图片再改好一点,再把几张图片一起放进网页里。
|
|
17
|
+
-->
|
|
18
|
+
|
|
19
|
+
<script type="application/json" id="task-data">
|
|
20
|
+
{
|
|
21
|
+
"任务标题": "给依然老师设计一个AI画像",
|
|
22
|
+
"一句话说明": "先让 AI 生成一个老师形象,再用网页把它展示出来,重点练习描述和小修改。",
|
|
23
|
+
"步骤": [
|
|
24
|
+
{
|
|
25
|
+
"标题": "先做图片",
|
|
26
|
+
"说明": "先用 AI 做出一张依然老师的图片。"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"标题": "放进网页",
|
|
30
|
+
"说明": "把图片放进网页里,再加上标题和一句介绍。"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"标题": "小改一下",
|
|
34
|
+
"说明": "试着小改一次图片,让它变得更好看一点。"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"标题": "展示变化",
|
|
38
|
+
"说明": "把几张图片一起放进网页里,展示你的修改过程。"
|
|
39
|
+
}
|
|
40
|
+
],
|
|
41
|
+
"评价目标": [
|
|
42
|
+
{
|
|
43
|
+
"等级": "一星",
|
|
44
|
+
"说明": "完成一张老师图片。"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"等级": "二星",
|
|
48
|
+
"说明": "把图片放进网页里,并完成发布。"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"等级": "三星",
|
|
52
|
+
"说明": "把图片再改好一点,再把几张图片一起放进网页里。"
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
"示例区标题": "示范样例",
|
|
56
|
+
"示例页面文件": "example.html"
|
|
57
|
+
}
|
|
58
|
+
</script>
|
|
59
|
+
|
|
60
|
+
</body>
|
|
61
|
+
</html>
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="zh-CN">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>太空小猫的探险 - Demo</title>
|
|
7
|
+
<style>
|
|
8
|
+
:root {
|
|
9
|
+
--primary-color: #6366f1;
|
|
10
|
+
--bg-gradient: linear-gradient(135deg, #1a1c2c 0%, #4a1942 100%);
|
|
11
|
+
--card-bg: rgba(255, 255, 255, 0.1);
|
|
12
|
+
}
|
|
13
|
+
body {
|
|
14
|
+
font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
|
|
15
|
+
background: var(--bg-gradient);
|
|
16
|
+
color: white;
|
|
17
|
+
margin: 0;
|
|
18
|
+
padding: 40px 20px;
|
|
19
|
+
display: flex;
|
|
20
|
+
flex-direction: column;
|
|
21
|
+
align-items: center;
|
|
22
|
+
min-height: 100vh;
|
|
23
|
+
}
|
|
24
|
+
h1 {
|
|
25
|
+
font-size: 2.5rem;
|
|
26
|
+
margin-bottom: 10px;
|
|
27
|
+
text-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
|
|
28
|
+
}
|
|
29
|
+
p.subtitle {
|
|
30
|
+
font-size: 1.1rem;
|
|
31
|
+
opacity: 0.8;
|
|
32
|
+
margin-bottom: 40px;
|
|
33
|
+
}
|
|
34
|
+
.gallery {
|
|
35
|
+
display: grid;
|
|
36
|
+
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
37
|
+
gap: 30px;
|
|
38
|
+
width: 100%;
|
|
39
|
+
max-width: 1200px;
|
|
40
|
+
}
|
|
41
|
+
.card {
|
|
42
|
+
background: var(--card-bg);
|
|
43
|
+
backdrop-filter: blur(10px);
|
|
44
|
+
border-radius: 20px;
|
|
45
|
+
padding: 20px;
|
|
46
|
+
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
47
|
+
transition: transform 0.3s ease;
|
|
48
|
+
text-align: center;
|
|
49
|
+
}
|
|
50
|
+
.card:hover {
|
|
51
|
+
transform: translateY(-10px);
|
|
52
|
+
border-color: var(--primary-color);
|
|
53
|
+
}
|
|
54
|
+
.image-placeholder {
|
|
55
|
+
width: 100%;
|
|
56
|
+
aspect-ratio: 1;
|
|
57
|
+
background: rgba(0, 0, 0, 0.3);
|
|
58
|
+
border-radius: 12px;
|
|
59
|
+
display: flex;
|
|
60
|
+
align-items: center;
|
|
61
|
+
justify-content: center;
|
|
62
|
+
margin-bottom: 20px;
|
|
63
|
+
overflow: hidden;
|
|
64
|
+
position: relative;
|
|
65
|
+
}
|
|
66
|
+
.image-placeholder img {
|
|
67
|
+
width: 100%;
|
|
68
|
+
height: 100%;
|
|
69
|
+
object-fit: cover;
|
|
70
|
+
}
|
|
71
|
+
.placeholder-text {
|
|
72
|
+
position: absolute;
|
|
73
|
+
color: rgba(255, 255, 255, 0.4);
|
|
74
|
+
font-size: 0.9rem;
|
|
75
|
+
}
|
|
76
|
+
.tag {
|
|
77
|
+
background: var(--primary-color);
|
|
78
|
+
padding: 4px 12px;
|
|
79
|
+
border-radius: 20px;
|
|
80
|
+
font-size: 0.8rem;
|
|
81
|
+
margin-bottom: 10px;
|
|
82
|
+
display: inline-block;
|
|
83
|
+
}
|
|
84
|
+
h3 {
|
|
85
|
+
margin: 10px 0;
|
|
86
|
+
font-size: 1.3rem;
|
|
87
|
+
}
|
|
88
|
+
.desc {
|
|
89
|
+
font-size: 0.9rem;
|
|
90
|
+
opacity: 0.7;
|
|
91
|
+
line-height: 1.5;
|
|
92
|
+
}
|
|
93
|
+
</style>
|
|
94
|
+
</head>
|
|
95
|
+
<body>
|
|
96
|
+
<h1>太空小猫的探险</h1>
|
|
97
|
+
<p class="subtitle">这是一个“风格统一、内容变化”的 AI 图片创作示例</p>
|
|
98
|
+
|
|
99
|
+
<div class="gallery">
|
|
100
|
+
<div class="card">
|
|
101
|
+
<div class="image-placeholder">
|
|
102
|
+
<img src="space_cat_moon.png" alt="太空小猫在月球">
|
|
103
|
+
<div class="placeholder-text">图片生成中...</div>
|
|
104
|
+
</div>
|
|
105
|
+
<div class="tag">月球探险</div>
|
|
106
|
+
<h3>正在赏月的橘猫</h3>
|
|
107
|
+
<p class="desc">在荒凉的月球表面,小橘猫穿着它的迷你宇航服,回头望着远处的蓝色地球。</p>
|
|
108
|
+
</div>
|
|
109
|
+
|
|
110
|
+
<div class="card">
|
|
111
|
+
<div class="image-placeholder">
|
|
112
|
+
<img src="space_cat_mars.png" alt="太空小猫在火星">
|
|
113
|
+
<div class="placeholder-text">图片生成中...</div>
|
|
114
|
+
</div>
|
|
115
|
+
<div class="tag">火星漫步</div>
|
|
116
|
+
<h3>探索红色星球</h3>
|
|
117
|
+
<p class="desc">火星的沙尘非常大,但小橘猫一点也不怕,它正在红色的岩石间寻找外星鱼干。</p>
|
|
118
|
+
</div>
|
|
119
|
+
|
|
120
|
+
<div class="card">
|
|
121
|
+
<div class="image-placeholder">
|
|
122
|
+
<img src="space_cat_station.png" alt="太空小猫在空间站">
|
|
123
|
+
<div class="placeholder-text">图片生成中...</div>
|
|
124
|
+
</div>
|
|
125
|
+
<div class="tag">空间站生活</div>
|
|
126
|
+
<h3>飘浮的下午茶</h3>
|
|
127
|
+
<p class="desc">在国际空间站里,小橘猫正在体验失重的感觉。你看,它的尾巴都飘起来了!</p>
|
|
128
|
+
</div>
|
|
129
|
+
</div>
|
|
130
|
+
</body>
|
|
131
|
+
</html>
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="zh-CN">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>做3张同主题图片</title>
|
|
7
|
+
<style>
|
|
8
|
+
* { box-sizing: border-box; }
|
|
9
|
+
body { margin: 0; font-family: "PingFang SC", "Microsoft YaHei", sans-serif; background: #f4f7fb; color: #24324a; }
|
|
10
|
+
.page { max-width: 1440px; margin: 0 auto; padding: 20px 20px 48px; }
|
|
11
|
+
.header-bar { background: linear-gradient(135deg,#5f82ff 0%,#8c74ff 100%); border-radius: 24px; padding: 20px 24px; box-shadow: 0 16px 36px rgba(92,108,192,.24); }
|
|
12
|
+
.header-left h1 { margin: 0; font-size: 26px; line-height: 1.3; color: #fff; font-weight: 800; }
|
|
13
|
+
.header-left .subtitle { margin: 8px 0 0; font-size: 13px; line-height: 1.8; color: rgba(255,255,255,.88); }
|
|
14
|
+
.main-section { margin-top: 18px; }
|
|
15
|
+
.block { background: #fff; border-radius: 24px; padding: 22px; box-shadow: 0 10px 28px rgba(100,122,166,.12); }
|
|
16
|
+
.content-layout { display: grid; grid-template-columns: 220px minmax(0,1fr) 220px; gap: 14px; align-items: stretch; }
|
|
17
|
+
.task-panel, .goal-panel { background: #f8faff; border: 1px solid #e7eefc; border-radius: 20px; padding: 16px; display: flex; flex-direction: column; gap: 14px; }
|
|
18
|
+
.panel-group h3 { margin: 0 0 10px; color: #334d98; font-size: 17px; }
|
|
19
|
+
.task-item { margin-bottom: 10px; }
|
|
20
|
+
.task-item:last-child { margin-bottom: 0; }
|
|
21
|
+
.item-top { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; font-size: 12px; font-weight: 600; color: #7a89ad; }
|
|
22
|
+
.item-body { background: #fff; border: 1px solid #e7eefc; border-radius: 12px; padding: 10px 12px; font-size: 13px; color: #60708b; line-height: 1.7; }
|
|
23
|
+
.task-item .num { min-width: 22px; height: 22px; padding: 0 7px; border-radius: 999px; background: #edf2ff; color: #7a89ad; font-size: 10px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
|
|
24
|
+
.star-item .num { background: #fff7dc; color: #b89a4f; }
|
|
25
|
+
.sample-frame-wrap { background: #f8faff; border: 1px solid #e7eefc; border-radius: 20px; padding: 14px; min-width: 0; }
|
|
26
|
+
.sample-frame-head { display: flex; justify-content: flex-start; align-items: center; gap: 10px; margin-bottom: 12px; }
|
|
27
|
+
.sample-frame-head h3 { margin: 0; color: #334d98; font-size: 17px; }
|
|
28
|
+
iframe { width: 100%; height: 560px; border: 1px solid #dfe7fb; border-radius: 16px; background: #fff; display: block; }
|
|
29
|
+
@media (max-width: 960px) { .page { padding: 14px 12px 32px; } .header-bar { padding: 16px 18px; } .header-left h1 { font-size: 22px; } .header-left .subtitle { font-size: 12px; } .content-layout { grid-template-columns: 1fr; } .task-panel, .goal-panel, .sample-frame-wrap { padding: 14px; } iframe { height: 360px; } }
|
|
30
|
+
</style>
|
|
31
|
+
</head>
|
|
32
|
+
<body>
|
|
33
|
+
<div class="page">
|
|
34
|
+
<header class="header-bar">
|
|
35
|
+
<div class="header-left">
|
|
36
|
+
<h1>做3张同主题图片</h1>
|
|
37
|
+
<p class="subtitle">先确定一个有趣的主题,再用 AI 生成 3 张风格统一、但情节不同的系列图片。</p>
|
|
38
|
+
</div>
|
|
39
|
+
</header>
|
|
40
|
+
<div class="main-section">
|
|
41
|
+
<section class="block">
|
|
42
|
+
<div class="content-layout">
|
|
43
|
+
<div class="task-panel">
|
|
44
|
+
<div class="panel-group">
|
|
45
|
+
<h3>步骤</h3>
|
|
46
|
+
<div class="task-item"><div class="item-top"><span class="num">1</span><span>选个好主题</span></div><div class="item-body">想一想你要画什么?比如“太空中的小猫”或者“深海里的探险”,主题要统一。</div></div><div class="task-item"><div class="item-top"><span class="num">2</span><span>写出风格词</span></div><div class="item-body">选一种你最喜欢的画风(比如 3D 卡通或水彩),并在每一张图的提示词里都带上它。</div></div><div class="task-item"><div class="item-top"><span class="num">3</span><span>对比和微调</span></div><div class="item-body">把 3 张图放在一起看,如果细节不像,就调整一下提示词,让它们看起来像一套作品。</div></div>
|
|
47
|
+
</div>
|
|
48
|
+
</div>
|
|
49
|
+
<div class="sample-frame-wrap">
|
|
50
|
+
<div class="sample-frame-head"><h3>示范样例:太空小猫的探险</h3></div>
|
|
51
|
+
<iframe src="demo.html" title="示范样例:太空小猫的探险"></iframe>
|
|
52
|
+
</div>
|
|
53
|
+
<div class="goal-panel">
|
|
54
|
+
<div class="panel-group">
|
|
55
|
+
<h3>评价目标</h3>
|
|
56
|
+
<div class="task-item star-item"><div class="item-top"><span class="num">一星</span><span>一星</span></div><div class="item-body">成功生成了 3 张内容相关的图片。</div></div><div class="task-item star-item"><div class="item-top"><span class="num">二星</span><span>二星</span></div><div class="item-body">3 张图片不仅主题相同,主要的色彩和人物形象也非常接近。</div></div><div class="task-item star-item"><div class="item-top"><span class="num">三星</span><span>三星</span></div><div class="item-body">画风完全统一,细节处理精致,看起来非常像一套正式的绘本插图。</div></div>
|
|
57
|
+
</div>
|
|
58
|
+
</div>
|
|
59
|
+
</div>
|
|
60
|
+
</section>
|
|
61
|
+
</div>
|
|
62
|
+
</div>
|
|
63
|
+
</body>
|
|
64
|
+
</html>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"任务标题": "做3张同主题图片",
|
|
3
|
+
"一句话说明": "先确定一个有趣的主题,再用 AI 生成 3 张风格统一、但情节不同的系列图片。",
|
|
4
|
+
"步骤": [
|
|
5
|
+
{
|
|
6
|
+
"标题": "选个好主题",
|
|
7
|
+
"说明": "想一想你要画什么?比如“太空中的小猫”或者“深海里的探险”,主题要统一。"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"标题": "写出风格词",
|
|
11
|
+
"说明": "选一种你最喜欢的画风(比如 3D 卡通或水彩),并在每一张图的提示词里都带上它。"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"标题": "对比和微调",
|
|
15
|
+
"说明": "把 3 张图放在一起看,如果细节不像,就调整一下提示词,让它们看起来像一套作品。"
|
|
16
|
+
}
|
|
17
|
+
],
|
|
18
|
+
"评价目标": [
|
|
19
|
+
{
|
|
20
|
+
"等级": "一星",
|
|
21
|
+
"说明": "成功生成了 3 张内容相关的图片。"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"等级": "二星",
|
|
25
|
+
"说明": "3 张图片不仅主题相同,主要的色彩和人物形象也非常接近。"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"等级": "三星",
|
|
29
|
+
"说明": "画风完全统一,细节处理精致,看起来非常像一套正式的绘本插图。"
|
|
30
|
+
}
|
|
31
|
+
],
|
|
32
|
+
"示例区标题": "示范样例:太空小猫的探险",
|
|
33
|
+
"示例页面文件": "__demo__.html"
|
|
34
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="zh-CN">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>A102 · 做3张同主题图片</title>
|
|
7
|
+
<style>
|
|
8
|
+
* { box-sizing: border-box; }
|
|
9
|
+
body { margin: 0; font-family: "PingFang SC", "Microsoft YaHei", sans-serif; background: #f4f7fb; color: #24324a; }
|
|
10
|
+
.page { max-width: 1400px; margin: 0 auto; padding: 20px; }
|
|
11
|
+
.hero { background: linear-gradient(135deg,#5f82ff 0%,#8c74ff 100%); color: #fff; border-radius: 24px; padding: 22px 24px; box-shadow: 0 16px 36px rgba(92,108,192,.22); }
|
|
12
|
+
.hero h1 { margin: 0; font-size: 28px; }
|
|
13
|
+
.hero p { margin: 8px 0 0; opacity: .92; font-size: 14px; }
|
|
14
|
+
.layout { margin-top: 18px; display: grid; grid-template-columns: 360px minmax(0,1fr); gap: 16px; align-items: start; }
|
|
15
|
+
.sidebar { display: grid; gap: 16px; }
|
|
16
|
+
.card, .preview-card { background: #fff; border: 1px solid #e7eefc; border-radius: 20px; padding: 18px; box-shadow: 0 10px 24px rgba(100,122,166,.08); }
|
|
17
|
+
.card h2, .preview-head h2 { margin: 0 0 12px; font-size: 18px; color: #314a96; }
|
|
18
|
+
.meta-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
|
|
19
|
+
.meta-item { background: #f8faff; border: 1px solid #e7eefc; border-radius: 14px; padding: 12px; }
|
|
20
|
+
.meta-item .label { font-size: 12px; color: #7a89ad; margin-bottom: 6px; }
|
|
21
|
+
.meta-item .value { font-size: 14px; color: #24324a; font-weight: 700; }
|
|
22
|
+
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
|
|
23
|
+
.tag { display: inline-flex; align-items: center; padding: 7px 12px; border-radius: 999px; background: #edf2ff; color: #4c65c3; font-size: 13px; font-weight: 700; }
|
|
24
|
+
.list { display: grid; gap: 10px; }
|
|
25
|
+
.list-item { background: #f8faff; border: 1px solid #e7eefc; border-radius: 14px; padding: 12px; line-height: 1.7; font-size: 14px; color: #60708b; }
|
|
26
|
+
.issue { border-left: 4px solid #8c74ff; background: #faf8ff; }
|
|
27
|
+
.issue strong { color: #314a96; display: block; margin: 6px 0; }
|
|
28
|
+
iframe { width: 100%; height: 900px; border: 1px solid #dfe7fb; border-radius: 16px; background: #fff; display: block; }
|
|
29
|
+
.empty-box { background: #f8faff; border: 1px dashed #cfdcff; border-radius: 14px; padding: 24px; color: #7a89ad; line-height: 1.8; }
|
|
30
|
+
@media (max-width: 960px) { .layout { grid-template-columns: 1fr; } iframe { height: 420px; } }
|
|
31
|
+
</style>
|
|
32
|
+
</head>
|
|
33
|
+
<body>
|
|
34
|
+
<div class="page">
|
|
35
|
+
<section class="hero">
|
|
36
|
+
<h1>A102 · 做3张同主题图片</h1>
|
|
37
|
+
<p>这是根据教师 JSON 自动生成的可视化查看页,左边快速扫读,右边直接看作品预览。</p>
|
|
38
|
+
</section>
|
|
39
|
+
<section class="layout">
|
|
40
|
+
<div class="sidebar">
|
|
41
|
+
<div class="card"><h2>基础信息</h2><div class="meta-grid"><div class="meta-item"><div class="label">主能力标签</div><div class="value">表达构建</div></div><div class="meta-item"><div class="label">任务类型标签</div><div class="value">视听表达</div></div></div></div>
|
|
42
|
+
<div class="card"><h2>适合学生类型</h2><div class="tags"><span class="tag">初次接触</span><span class="tag">需要明确目标</span></div></div>
|
|
43
|
+
<div class="card"><h2>训练重点</h2><div class="list"><div class="list-item">练习通过提示词锁定画面风格</div><div class="list-item">理解作品一致性的价值</div><div class="list-item">初步接触提示词的模块化修改</div></div></div>
|
|
44
|
+
<div class="card"><h2>卡点和解决方案</h2><div class="list"><div class="list-item issue"><strong>卡点</strong>学生在改内容时,不小心把风格提示词也删掉或改掉了,导致风格跑偏。<strong>解决方案</strong>引导学生像玩乐高一样组装提示词,把“风格模块”固定住,只替换“内容模块”。</div><div class="list-item issue"><strong>卡点</strong>生成的角色长相在 3 张图里不完全一样。<strong>解决方案</strong>建议学生在描述角色时使用更具体的特征词(如:橘色条纹、蓝色领带),并多次尝试。</div></div></div>
|
|
45
|
+
<div class="card"><h2>可拓展方向</h2><div class="list"><div class="list-item">为这组系列图片配上旁白文字</div><div class="list-item">尝试不同流派的艺术风格(如像素风、油画风)</div><div class="list-item">将图片组合成一个简单的长图网页</div></div></div>
|
|
46
|
+
<div class="card"><h2>课后作业</h2><div class="list"><div class="list-item">尝试以“我的梦想职业”为题,制作一组 3 张的职业生活系列图,保持风格一致。</div></div></div>
|
|
47
|
+
</div>
|
|
48
|
+
<div class="preview-card empty"><div class="preview-head"><h2>作品预览</h2></div><div class="empty-box">当前文件夹下没有找到 example.html / index.html / preview.html</div></div>
|
|
49
|
+
</section>
|
|
50
|
+
</div>
|
|
51
|
+
</body>
|
|
52
|
+
</html>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"任务类别": "A",
|
|
3
|
+
"任务编号": "101",
|
|
4
|
+
"任务名称": "做3张同主题图片",
|
|
5
|
+
"主能力标签": "表达构建",
|
|
6
|
+
"任务类型标签": "视听表达",
|
|
7
|
+
"适合学生类型": [
|
|
8
|
+
"初次接触",
|
|
9
|
+
"需要明确目标"
|
|
10
|
+
],
|
|
11
|
+
"训练重点": [
|
|
12
|
+
"练习通过提示词锁定画面风格",
|
|
13
|
+
"理解作品一致性的价值",
|
|
14
|
+
"初步接触提示词的模块化修改"
|
|
15
|
+
],
|
|
16
|
+
"卡点和解决方案": [
|
|
17
|
+
{
|
|
18
|
+
"卡点": "学生在改内容时,不小心把风格提示词也删掉或改掉了,导致风格跑偏。",
|
|
19
|
+
"解决方案": "引导学生像玩乐高一样组装提示词,把“风格模块”固定住,只替换“内容模块”。"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"卡点": "生成的角色长相在 3 张图里不完全一样。",
|
|
23
|
+
"解决方案": "建议学生在描述角色时使用更具体的特征词(如:橘色条纹、蓝色领带),并多次尝试。"
|
|
24
|
+
}
|
|
25
|
+
],
|
|
26
|
+
"可拓展方向": [
|
|
27
|
+
"为这组系列图片配上旁白文字",
|
|
28
|
+
"尝试不同流派的艺术风格(如像素风、油画风)",
|
|
29
|
+
"将图片组合成一个简单的长图网页"
|
|
30
|
+
],
|
|
31
|
+
"课后作业": [
|
|
32
|
+
"尝试以“我的梦想职业”为题,制作一组 3 张的职业生活系列图,保持风格一致。"
|
|
33
|
+
]
|
|
34
|
+
}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="zh">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>自我介绍页面</title>
|
|
7
|
+
<style>
|
|
8
|
+
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
9
|
+
body { font-family: sans-serif; background: #f5f0e8; min-height: 100vh; display: flex; justify-content: center; align-items: center; padding: 20px; }
|
|
10
|
+
.card {
|
|
11
|
+
background: white;
|
|
12
|
+
border-radius: 16px;
|
|
13
|
+
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
|
|
14
|
+
overflow: hidden;
|
|
15
|
+
max-width: 480px;
|
|
16
|
+
width: 100%;
|
|
17
|
+
}
|
|
18
|
+
.hero-img {
|
|
19
|
+
width: 100%;
|
|
20
|
+
height: 220px;
|
|
21
|
+
object-fit: cover;
|
|
22
|
+
display: block;
|
|
23
|
+
}
|
|
24
|
+
.content { padding: 28px 24px; }
|
|
25
|
+
.tag {
|
|
26
|
+
display: inline-block;
|
|
27
|
+
background: #e8f4e5;
|
|
28
|
+
color: #2e7d32;
|
|
29
|
+
font-size: 12px;
|
|
30
|
+
padding: 4px 10px;
|
|
31
|
+
border-radius: 20px;
|
|
32
|
+
margin-bottom: 12px;
|
|
33
|
+
}
|
|
34
|
+
h1 {
|
|
35
|
+
font-size: 22px;
|
|
36
|
+
color: #222;
|
|
37
|
+
margin-bottom: 10px;
|
|
38
|
+
}
|
|
39
|
+
p {
|
|
40
|
+
font-size: 14px;
|
|
41
|
+
color: #666;
|
|
42
|
+
line-height: 1.7;
|
|
43
|
+
margin-bottom: 16px;
|
|
44
|
+
}
|
|
45
|
+
.highlight-box {
|
|
46
|
+
background: #fff9e6;
|
|
47
|
+
border-left: 4px solid #f0a500;
|
|
48
|
+
padding: 12px 16px;
|
|
49
|
+
border-radius: 0 8px 8px 0;
|
|
50
|
+
font-size: 14px;
|
|
51
|
+
color: #5a3e00;
|
|
52
|
+
margin-bottom: 20px;
|
|
53
|
+
}
|
|
54
|
+
.btn {
|
|
55
|
+
display: inline-block;
|
|
56
|
+
background: #4a90e2;
|
|
57
|
+
color: white;
|
|
58
|
+
padding: 10px 24px;
|
|
59
|
+
border-radius: 8px;
|
|
60
|
+
text-decoration: none;
|
|
61
|
+
font-size: 14px;
|
|
62
|
+
}
|
|
63
|
+
</style>
|
|
64
|
+
</head>
|
|
65
|
+
<body>
|
|
66
|
+
<div class="card">
|
|
67
|
+
<img src="https://picsum.photos/480/220?random=1" alt="介绍图" class="hero-img">
|
|
68
|
+
<div class="content">
|
|
69
|
+
<span class="tag">自我展示</span>
|
|
70
|
+
<h1>你好,我叫小星 ✨</h1>
|
|
71
|
+
<p>我是一个热爱科学和画画的小学生,喜欢用画笔记录每一天的发现。这个页面用来介绍我自己,让别人快速认识我!</p>
|
|
72
|
+
<div class="highlight-box">📌 本次练习重点:把图片和文字组合在一起,做出有结构的介绍页面。</div>
|
|
73
|
+
<a href="#" class="btn">了解更多</a>
|
|
74
|
+
</div>
|
|
75
|
+
</div>
|
|
76
|
+
</body>
|
|
77
|
+
</html>
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="zh-CN">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>做一个介绍页面</title>
|
|
7
|
+
<style>
|
|
8
|
+
* { box-sizing: border-box; }
|
|
9
|
+
body { margin: 0; font-family: "PingFang SC", "Microsoft YaHei", sans-serif; background: #f4f7fb; color: #24324a; }
|
|
10
|
+
.page { max-width: 1440px; margin: 0 auto; padding: 20px 20px 48px; }
|
|
11
|
+
.header-bar { background: linear-gradient(135deg,#5f82ff 0%,#8c74ff 100%); border-radius: 24px; padding: 20px 24px; box-shadow: 0 16px 36px rgba(92,108,192,.24); }
|
|
12
|
+
.header-left h1 { margin: 0; font-size: 26px; line-height: 1.3; color: #fff; font-weight: 800; }
|
|
13
|
+
.header-left .subtitle { margin: 8px 0 0; font-size: 13px; line-height: 1.8; color: rgba(255,255,255,.88); }
|
|
14
|
+
.main-section { margin-top: 18px; }
|
|
15
|
+
.block { background: #fff; border-radius: 24px; padding: 22px; box-shadow: 0 10px 28px rgba(100,122,166,.12); }
|
|
16
|
+
.content-layout { display: grid; grid-template-columns: 220px minmax(0,1fr) 220px; gap: 14px; align-items: stretch; }
|
|
17
|
+
.task-panel, .goal-panel { background: #f8faff; border: 1px solid #e7eefc; border-radius: 20px; padding: 16px; display: flex; flex-direction: column; gap: 14px; }
|
|
18
|
+
.panel-group h3 { margin: 0 0 10px; color: #334d98; font-size: 17px; }
|
|
19
|
+
.task-item { margin-bottom: 10px; }
|
|
20
|
+
.task-item:last-child { margin-bottom: 0; }
|
|
21
|
+
.item-top { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; font-size: 12px; font-weight: 600; color: #7a89ad; }
|
|
22
|
+
.item-body { background: #fff; border: 1px solid #e7eefc; border-radius: 12px; padding: 10px 12px; font-size: 13px; color: #60708b; line-height: 1.7; }
|
|
23
|
+
.task-item .num { min-width: 22px; height: 22px; padding: 0 7px; border-radius: 999px; background: #edf2ff; color: #7a89ad; font-size: 10px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
|
|
24
|
+
.star-item .num { background: #fff7dc; color: #b89a4f; }
|
|
25
|
+
.sample-frame-wrap { background: #f8faff; border: 1px solid #e7eefc; border-radius: 20px; padding: 14px; min-width: 0; }
|
|
26
|
+
.sample-frame-head { display: flex; justify-content: flex-start; align-items: center; gap: 10px; margin-bottom: 12px; }
|
|
27
|
+
.sample-frame-head h3 { margin: 0; color: #334d98; font-size: 17px; }
|
|
28
|
+
iframe { width: 100%; height: 560px; border: 1px solid #dfe7fb; border-radius: 16px; background: #fff; display: block; }
|
|
29
|
+
@media (max-width: 960px) { .page { padding: 14px 12px 32px; } .header-bar { padding: 16px 18px; } .header-left h1 { font-size: 22px; } .header-left .subtitle { font-size: 12px; } .content-layout { grid-template-columns: 1fr; } .task-panel, .goal-panel, .sample-frame-wrap { padding: 14px; } iframe { height: 360px; } }
|
|
30
|
+
</style>
|
|
31
|
+
</head>
|
|
32
|
+
<body>
|
|
33
|
+
<div class="page">
|
|
34
|
+
<header class="header-bar">
|
|
35
|
+
<div class="header-left">
|
|
36
|
+
<h1>做一个介绍页面</h1>
|
|
37
|
+
<p class="subtitle">用一张图片加一段文字,做一个属于自己的介绍页面,练一练图文组合的技巧。</p>
|
|
38
|
+
</div>
|
|
39
|
+
</header>
|
|
40
|
+
<div class="main-section">
|
|
41
|
+
<section class="block">
|
|
42
|
+
<div class="content-layout">
|
|
43
|
+
<div class="task-panel">
|
|
44
|
+
<div class="panel-group">
|
|
45
|
+
<h3>步骤</h3>
|
|
46
|
+
<div class="task-item"><div class="item-top"><span class="num">1</span><span>选一张图片</span></div><div class="item-body">选一张能代表你自己的图片,可以是照片、画画,或者用 AI 生成的图片。</div></div><div class="task-item"><div class="item-top"><span class="num">2</span><span>写一段介绍文字</span></div><div class="item-body">写几句话介绍自己:你是谁、你有什么特点、你喜欢什么。文字不用多,说清楚就行。</div></div><div class="task-item"><div class="item-top"><span class="num">3</span><span>把图和文字放进网页</span></div><div class="item-body">用网页把图片和文字组合在一起。注意排版:图片放哪里、文字放哪里,看起来要整齐。</div></div><div class="task-item"><div class="item-top"><span class="num">4</span><span>调一调排版</span></div><div class="item-body">试着调整图片大小、文字位置、背景颜色,让页面更好看。不同排版感觉不一样,多试试!</div></div>
|
|
47
|
+
</div>
|
|
48
|
+
</div>
|
|
49
|
+
<div class="sample-frame-wrap">
|
|
50
|
+
<div class="sample-frame-head"><h3>示范样例</h3></div>
|
|
51
|
+
<iframe src="demo.html" title="示范样例"></iframe>
|
|
52
|
+
</div>
|
|
53
|
+
<div class="goal-panel">
|
|
54
|
+
<div class="panel-group">
|
|
55
|
+
<h3>评价目标</h3>
|
|
56
|
+
<div class="task-item star-item"><div class="item-top"><span class="num">一星</span><span>一星</span></div><div class="item-body">页面里有图片也有文字,结构基本完整。</div></div><div class="task-item star-item"><div class="item-top"><span class="num">二星</span><span>二星</span></div><div class="item-body">图文排列整齐,排版清晰,能一眼看出图片和文字的关系。</div></div><div class="task-item star-item"><div class="item-top"><span class="num">三星</span><span>三星</span></div><div class="item-body">排版有自己的想法,层次分明,比如标题、正文、重点提示都有区分,看起来很舒服。</div></div>
|
|
57
|
+
</div>
|
|
58
|
+
</div>
|
|
59
|
+
</div>
|
|
60
|
+
</section>
|
|
61
|
+
</div>
|
|
62
|
+
</div>
|
|
63
|
+
</body>
|
|
64
|
+
</html>
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"任务标题": "做一个介绍页面",
|
|
3
|
+
"一句话说明": "用一张图片加一段文字,做一个属于自己的介绍页面,练一练图文组合的技巧。",
|
|
4
|
+
"步骤": [
|
|
5
|
+
{
|
|
6
|
+
"标题": "选一张图片",
|
|
7
|
+
"说明": "选一张能代表你自己的图片,可以是照片、画画,或者用 AI 生成的图片。"
|
|
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
|
+
"示例页面文件": "__demo__.html"
|
|
38
|
+
}
|