1.

How To Add References In Smil?

Answer»

A time namespace should be defined to use SMIL in HTML.

The process is:

  1. ADD <?import&GT; element in <HTML> tag definition to add time NAME space.
  2.  Define a ‘time’ class to add SMIL attributes to standard HTML elements.
  3. This is done by <html xmlns:time="urn:schemas-microsoft-com:time">
  4. To define the class "time" add a <style> element.
  5. This is done by
    <head>
    <?import namespace="time" implementation="#default#TIME2">
    <style>.time {behavior: url(#default#time2)}</style>

A time namespace should be defined to use SMIL in HTML.

The process is:



Discussion

No Comment Found