XML - 数据交换管理/SMIL/答案
外观
< XML - 数据交换管理 | SMIL
(重定向自 XML - 数据交换管理/SMIL (答案))- 创建一个简单的SMIL文件,显示“Hello World”这两个词。确认该文件在符合SMIL标准的播放器中正常工作。
- 编写一个SMIL文件,显示“Hello World”3秒,然后显示“Goodbye World”1秒。确认该文件在符合SMIL标准的播放器中正常工作。
1. 由Anne Rayborn Howard提交
文件 Exercise1.smil
1 2 3 4 5 6 7 8 9 10 11 |
<smil>
<head>
<layout>
<root-layout width="200" height="75" background-color="white" />
<region id="text" left="0" top="0" width="200" height="75" />
</layout>
</head>
<body>
<text src="Exercise1.rt" alt="Hello World" region="text" dur="1s" begin="0s" />
</body>
</smil>
|
文件 Exercise1.rt
1 |
Hello World! |
2. 由Anne Rayborn Howard提交
文件 Exercise2.smil
1 2 3 4 5 6 7 8 9 10 11 12 |
<smil>
<head>
<layout>
<root-layout width="200" height="75" background-color="white" />
<region id="text" left="0" top="0" width="200" height="75" />
</layout>
</head>
<body>
<text src="Exercise1.rt" alt="Hello World" region="text" dur="3s" begin="0s" />
<text src="Exercise2.rt" alt="Goodbye World" region="text" dur="1s" begin="0s" />
</body>
</smil>
|
文件 Exercise2.rt
1 |
Goodbye World! |
3. 由(你的姓名)提交
如果您有MS Powerpoint,您可以使用 Smil Generator for Powerpoint presentations 将您的Powerpoint转换为SMIL文件。
1 2 3 |
4. 由(您的姓名)提交
1 2 3 |