10_Prog/ParSet1.htm


  1  <?xml version="1.0" encoding="windows-1250"?>
  2  <!DOCTYPE html   PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  3    "DTD/xhtml1-strict.dtd">
  4  <html xmlns:t="urn:schemas-microsoft-com:time">
  5  <head>
  6    <title>ParSet1</title>
  7    <meta http-equiv="Author" content="Imrich BURANSKY" />
  8    <meta http-equiv="Content-Type" content="text/html; charset=Windows-1250" />
  9    <?IMPORT namespace="t" implementation="#default#time2">
 10    <style>
 11      #oDiv { width:100px; height:50px; border:solid black 1px;
 12        text-align:center; padding:10px; background-color:silver;
 13      }
 14    </style>
 15  </head>
 16  <body onclick="oPar.beginElement()">
 17    <h2>Prvky t:par t:set</h2>
 18    <p>Zmena prvku div po klepnutí na 3 sekundy.</p>
 19    <div id="oDiv" >Zmena šírky a farby !</div>
 20  
 21    <t:par id="oPar" begin="indefinite" dur="3" >
 22      <t:set targetElement="oDiv" attributeName="width" to="300"  />
 23      <t:set targetElement="oDiv" attributeName="backgroundColor" to="yellow"  />
 24    </t:par>
 25  
 26  </body>
 27  </html>