Practice Part 3
Copy and paste the SMIL file below and experiment with changing
the <par> and <seq> tags to change the flow of the presentation.
<smil>
<head>
<layout>
<root-layout width="250" height="280" background-color="#ffcc00"
/>
<region id="one" top="0" left="0"
width="80" height="80" background-color="navy"/>
<region id="two" top="0" left="80"
width="80" height="80" background-color="red"/>
<region id="three" top="0" left="160"
width="80" height="80" background-color="green"/>
<region id="four" top="90" left="80"
width="80" height="80" background-color="fuchsia"/>
<region id="five" top="170" left="0"
width="80" height="80" background-color="lime"/>
<region id="six" top="170" left="80"
width="80" height="80" background-color="yellow"/>
<region id="seven" top="170" left="160"
width="80" height="80" background-color="blue"/>
</layout>
</head>
<body>
<par>
<audio src="rtsp://realserver.bu.edu:554/a/v/av/nis/training/smil/driving.rm"
end="30s" />
<seq>
<img region ="one" src="rtsp://realserver.bu.edu:554/a/v/av/nis/training/smil/one.gif"
/>
<img region ="two" src="rtsp://realserver.bu.edu:554/a/v/av/nis/training/smil/two.gif"
/>
<img region ="three" src="rtsp://realserver.bu.edu:554/a/v/av/nis/training/smil/three.gif"
/>
</seq>
<img region ="four" src="rtsp://realserver.bu.edu:554/a/v/av/nis/training/smil/four.gif"
/>
<seq>
<img region ="five" src="rtsp://realserver.bu.edu:554/a/v/av/nis/training/smil/five.gif"
/>
<img region ="six" src="rtsp://realserver.bu.edu:554/a/v/av/nis/training/smil/six.gif"
/>
<img region ="seven" src="rtsp://realserver.bu.edu:554/a/v/av/nis/training/smil/eight.gif"
/>
</seq>
</par>
</body>
</smil>
|