公司要把smil整合到我们系统中,顺便放上来了...
主要是让html中能使用smil标签管理多媒体资源(视频,音频,图片等等)
例如一个hmtl文件 代码:
- <html>
- <head>
- head>
- <body>
- <img src=”image1”>
- <img src=”image2”>
- body>
- html>
我们在只需要在
标签内定义
xmlns:time="urn:schemas-microsoft-com:time"
,还有在
之间加上
- "time" implementation="#default#time2">
- <style type="text/css"> .time {behavior: url(#default#time2)}</style>
<style type="text/css">
.time {behavior: url(#default#time2)}</style>
我们就可以使用smil的相关功能了。例如上面代码
<time:seq></time:seq>
- <html xmlns:time="urn:schemas-microsoft-com:time">
- <head>
- import namespace="time" implementation="#default#time2">
- <style>.time {behavior: url(#default#time2)}style>
- head>
- <body>
- <time:seq>
- <img src=”image1” dur=”2s”>
- <img src=”image2” dur=”4s”>
- <time:seq>
- body>
- html>
time:seq就是smil标签,其中prefix对应头(head) <style type="text/css"></style>中定义的time,suffix就是smil自己的标签(详见smilTutorial)。