html镶嵌smil

公司要把smil整合到我们系统中,顺便放上来了...

主要是让html中能使用smil标签管理多媒体资源(视频,音频,图片等等)

例如一个hmtl文件 代码:
  1. <html>  
  2.     <head>  
  3.     head>  
  4.     <body>  
  5.         <img src=”image1”>  
  6.         <img src=”image2”>  
  7.     body>  
  8. html>  
我们在只需要在 标签内定义 xmlns:time="urn:schemas-microsoft-com:time" ,还有在 之间加上
  1. "time" implementation="#default#time2">   
  2. <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>
               
  1. <html xmlns:time="urn:schemas-microsoft-com:time">  
  2.     <head>  
  3.        
  4.     <!---->import namespace="time" implementation="#default#time2">  
  5.     <style>.time {behavior: url(#default#time2)}style>  
  6.   
  7. head>  
  8.     <body>  
  9.         <time:seq>  
  10.             <img src=”image1” dur=”2s”>  
  11.             <img src=”image2” dur=”4s”>  
  12.         <time:seq>  
  13.     body>  
  14. html>  
      

time:seq就是smil标签,其中prefix对应头(head) <style type="text/css"></style>中定义的timesuffix就是smil自己的标签(详见smilTutorial)。

你可能感兴趣的:(html,css,Microsoft)