Source of trans.smil

<smil xmlns="http://www.w3.org/2001/SMIL20/Language">
  <!-- adding transitions -->

  <head>
    <meta name = "title"
          content = "Adding transitions" />

    <layout>
      <root-layout height = "300"
                   width = "400"
                   backgroundColor = "blue" />

      <region id = "mainRgn"
              left = "10%"
              top = "5%"
              height = "70%"
              width = "80%"
              backgroundColor = "black" 
              fit = "fill"/>

      <region id = "textRgn"
              left = "10%"
              top = "80%"
              height = "15%"
              width = "80%"
              backgroundColor = "green" />

    </layout>
    
    <!-- define transitions here -->
    <transition id = "xfade"
                type = "fade"
                subtype = "crossfade" />

    <transition id = "myWipe"
                type = "barWipe"
                subtype = "leftToRight" />

    <transition id = "xWipe"
                type = "miscDiagonalWipe"
                subtype = "doubleBarnDoor" 
                dur = "2s"/>

    <transition id = "heart"
                type = "miscShapeWipe"
                subtype = "heart" />

<!--
    <transition id = ""
                type = ""
                subtype = "" />

-->

  </head>

  <body>
    <seq>
      <par>
        <img src = "govPal.jpg"
             region = "mainRgn"
             dur = "5s" 
             transOut = "xfade" />

        <text src = "data:text/plain,Govenors%20Palace"
              region = "textRgn"
              dur = "5s" />
      </par>

      <par>
        <img src = "1ball1_lg.jpg"
             region = "mainRgn"
             dur = "5s" 
             transIn = "xfade"
             transOut = "myWipe" />
 
        <text src = "data:text/plain,The%20Ballcourt"
              region = "textRgn"
              dur = "5s"/ >
      </par>
  
      <par>
        <img src = "1bearded1_lg.jpg"
             region = "mainRgn"
             dur = "5s" 
             transIn = "myWipe"
             transOut = "xWipe"/>
 
        <text src = "data:text/plain,Temple%20of%20the%20bearded%20man"
              region = "textRgn"
              dur = "5s"/ >
      </par>
  
      <par>
        <img src = "1column1_lg.jpg"
             region = "mainRgn"
             dur = "5s" 
             transIn = "heart" />
 
        <text src = "data:text/plain,Columns%20in%20the%20Nunnery"
              region = "textRgn"
              dur = "5s"/ >
      </par>
    </seq> 

  </body>
</smil>