home *** CD-ROM | disk | FTP | other *** search
/ Photo Explosion 2.5 (Special Edition) / NovaDevelopment-PhotoExplosionSE-v2.5-Windows.iso / Data / Data1.cab / _8EB414FC43D145288D20A9202E965EB0 < prev    next >
Encoding:
Text File  |  2005-12-12  |  12.8 KB  |  323 lines

  1. <html>
  2. <head>
  3. <title>Home Sweet Home</title>
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  5.  
  6. <style>
  7.  
  8. IMG {
  9. position:relative;
  10. }
  11.  
  12. .TextHolder01{
  13. cursor:hand;
  14. position:relative;
  15. font-family:"Arial", "Helvetica", "sans-serif";
  16. font-size:24pt;
  17. font-weight:bold;
  18. text-align:center;
  19. color:#003399;
  20. }
  21.  
  22.  
  23. .ParentLayer {
  24. border-style:groove;
  25. border-color:green;
  26. border-width:0px;
  27. ; cursor: hand}
  28.  
  29. .ImageHolder {
  30. cursor:hand;
  31. }
  32.  
  33. .VideoHolder {
  34. cursor:hand;
  35. }
  36.  
  37. .Moveable01 {
  38. cursor:hand;
  39. position:relative;
  40. font-family:"Arial";
  41. font-size:12pt;
  42. font-style:italic;
  43. font-weight:bold;
  44. text-align:left;
  45. color:#ffffff;
  46. }
  47.  
  48. .Fixed01 {  
  49. font-family: Arial, Helvetica, sans-serif; 
  50. font-size: 7pt; 
  51. font-weight: normal;
  52. font-style: italic; 
  53. color: #003399; 
  54. text-align: center
  55. }
  56.  
  57. .Fixed02 { 
  58. cursor:arrow;
  59. font-family: Arial, Helvetica, sans-serif; 
  60. font-size: 7pt; 
  61. font-weight: normal;
  62. font-style: italic; 
  63. color: #ffff99; 
  64. text-align: center 
  65. }
  66.  
  67. .Dynamic01 {
  68. cursor:arrow;
  69. position:relative;
  70. font-family:"Arial";
  71. font-size:12pt;
  72. font-style:italic;
  73. font-weight:bold;
  74. text-align:left;
  75. color:#ffff00;
  76. }
  77.  
  78. .TextHolder02 { cursor:hand; position:relative; font-family:"Arial", "Helvetica", "sans-serif"; font-size:12pt; text-align:left; color:#000000; ; font-weight: bold}
  79.  
  80. .SoundClip {
  81. cursor:hand;
  82. position:relative;
  83. }
  84. </style>
  85.  
  86. <script language="JavaScript">
  87. <!--
  88. function MM_timelinePlay(tmLnName, myID) { //v1.2
  89.   //Copyright 1997 Macromedia, Inc. All rights reserved.
  90.   var i,j,tmLn,props,keyFrm,sprite,numKeyFr,firstKeyFr,propNum,theObj,firstTime=false;
  91.   if (document.MM_Time == null) MM_initTimelines(); //if *very* 1st time
  92.   tmLn = document.MM_Time[tmLnName];
  93.   if (myID == null) { myID = ++tmLn.ID; firstTime=true;}//if new call, incr ID
  94.   if (myID == tmLn.ID) { //if Im newest
  95.     setTimeout('MM_timelinePlay("'+tmLnName+'",'+myID+')',tmLn.delay);
  96.     fNew = ++tmLn.curFrame;
  97.     for (i=0; i<tmLn.length; i++) {
  98.       sprite = tmLn[i];
  99.       if (sprite.charAt(0) == 's') {
  100.         if (sprite.obj) {
  101.           numKeyFr = sprite.keyFrames.length; firstKeyFr = sprite.keyFrames[0];
  102.           if (fNew >= firstKeyFr && fNew <= sprite.keyFrames[numKeyFr-1]) {//in range
  103.             keyFrm=1;
  104.             for (j=0; j<sprite.values.length; j++) {
  105.               props = sprite.values[j]; 
  106.               if (numKeyFr != props.length) {
  107.                 if (props.prop2 == null) sprite.obj[props.prop] = props[fNew-firstKeyFr];
  108.                 else        sprite.obj[props.prop2][props.prop] = props[fNew-firstKeyFr];
  109.               } else {
  110.                 while (keyFrm<numKeyFr && fNew>=sprite.keyFrames[keyFrm]) keyFrm++;
  111.                 if (firstTime || fNew==sprite.keyFrames[keyFrm-1]) {
  112.                   if (props.prop2 == null) sprite.obj[props.prop] = props[keyFrm-1];
  113.                   else        sprite.obj[props.prop2][props.prop] = props[keyFrm-1];
  114.         } } } } }
  115.       } else if (sprite.charAt(0)=='b' && fNew == sprite.frame) eval(sprite.value);
  116.       if (fNew > tmLn.lastFrame) tmLn.ID = 0;
  117.   } }
  118. }
  119.  
  120. function MM_timelineGoto(tmLnName, fNew, numGotos) { //v2.0
  121.   //Copyright 1997 Macromedia, Inc. All rights reserved.
  122.   var i,j,tmLn,props,keyFrm,sprite,numKeyFr,firstKeyFr,lastKeyFr,propNum,theObj;
  123.   if (document.MM_Time == null) MM_initTimelines(); //if *very* 1st time
  124.   tmLn = document.MM_Time[tmLnName];
  125.   if (numGotos != null)
  126.     if (tmLn.gotoCount == null) tmLn.gotoCount = 1;
  127.     else if (tmLn.gotoCount++ >= numGotos) {tmLn.gotoCount=0; return}
  128.   jmpFwd = (fNew > tmLn.curFrame);
  129.   for (i = 0; i < tmLn.length; i++) {
  130.     sprite = (jmpFwd)? tmLn[i] : tmLn[(tmLn.length-1)-i]; //count bkwds if jumping back
  131.     if (sprite.charAt(0) == "s") {
  132.       numKeyFr = sprite.keyFrames.length;
  133.       firstKeyFr = sprite.keyFrames[0];
  134.       lastKeyFr = sprite.keyFrames[numKeyFr - 1];
  135.       if ((jmpFwd && fNew<firstKeyFr) || (!jmpFwd && lastKeyFr<fNew)) continue; //skip if untouchd
  136.       for (keyFrm=1; keyFrm<numKeyFr && fNew>=sprite.keyFrames[keyFrm]; keyFrm++);
  137.       for (j=0; j<sprite.values.length; j++) {
  138.         props = sprite.values[j];
  139.         if (numKeyFr == props.length) propNum = keyFrm-1 //keyframes only
  140.         else propNum = Math.min(Math.max(0,fNew-firstKeyFr),props.length-1); //or keep in legal range
  141.         if (sprite.obj != null) {
  142.           if (props.prop2 == null) sprite.obj[props.prop] = props[propNum];
  143.           else        sprite.obj[props.prop2][props.prop] = props[propNum];
  144.       } }
  145.     } else if (sprite.charAt(0)=='b' && fNew == sprite.frame) eval(sprite.value);
  146.   }
  147.   tmLn.curFrame = fNew;
  148.   if (tmLn.ID == 0) eval('MM_timelinePlay(tmLnName)');
  149. }
  150.  
  151. function MM_swapImgRestore() { //v3.0
  152.   var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
  153. }
  154.  
  155. function MM_preloadImages() { //v3.0
  156.   var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
  157.     var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
  158.     if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
  159. }
  160.  
  161. function MM_findObj(n, d) { //v3.0
  162.   var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
  163.     d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  164.   if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  165.   for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document); return x;
  166. }
  167.  
  168. function MM_swapImage() { //v3.0
  169.   var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
  170.    if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
  171. }
  172.  
  173. function MM_initTimelines() {
  174.     //MM_initTimelines() Copyright 1997 Macromedia, Inc. All rights reserved.
  175.     var ns = navigator.appName == "Netscape";
  176.     document.MM_Time = new Array(1);
  177.     document.MM_Time[0] = new Array(4);
  178.     document.MM_Time["Timeline1"] = document.MM_Time[0];
  179.     document.MM_Time[0].MM_Name = "Timeline1";
  180.     document.MM_Time[0].fps = 15;
  181.     document.MM_Time[0][0] = new String("behavior");
  182.     document.MM_Time[0][0].frame = 31;
  183.     document.MM_Time[0][0].value = "MM_timelineGoto('Timeline1','1')";
  184.     document.MM_Time[0][1] = new String("sprite");
  185.     document.MM_Time[0][1].slot = 1;
  186.     if (ns)
  187.         document.MM_Time[0][1].obj = document["Layer9"];
  188.     else
  189.         document.MM_Time[0][1].obj = document.all ? document.all["Layer9"] : null;
  190.     document.MM_Time[0][1].keyFrames = new Array(1, 5, 10, 13, 14, 15, 30);
  191.     document.MM_Time[0][1].values = new Array(3);
  192.     document.MM_Time[0][1].values[0] = new Array(1,3,5,9,16,25,34,46,59,74,106,139,166,207,230,234,238,242,247,251,256,261,266,272,278,283,289,295,300,306);
  193.     document.MM_Time[0][1].values[0].prop = "left";
  194.     document.MM_Time[0][1].values[1] = new Array(26,40,53,67,80,89,97,103,108,110,103,89,79,75,95,109,123,139,155,173,192,212,234,257,280,303,326,349,372,395);
  195.     document.MM_Time[0][1].values[1].prop = "top";
  196.     if (!ns) {
  197.         document.MM_Time[0][1].values[0].prop2 = "style";
  198.         document.MM_Time[0][1].values[1].prop2 = "style";
  199.     }
  200.     document.MM_Time[0][1].values[2] = new Array("15","12","12","12","12","12","12");
  201.     document.MM_Time[0][1].values[2].prop = "zIndex";
  202.     if (!ns)
  203.         document.MM_Time[0][1].values[2].prop2 = "style";
  204.     document.MM_Time[0][2] = new String("sprite");
  205.     document.MM_Time[0][2].slot = 3;
  206.     if (ns)
  207.         document.MM_Time[0][2].obj = document["Layer2"];
  208.     else
  209.         document.MM_Time[0][2].obj = document.all ? document.all["Layer2"] : null;
  210.     document.MM_Time[0][2].keyFrames = new Array(1, 12, 24);
  211.     document.MM_Time[0][2].values = new Array(2);
  212.     document.MM_Time[0][2].values[0] = new Array(37,36,35,34,33,31,30,29,28,27,26,25,26,27,28,29,30,31,31,32,33,34,35,36);
  213.     document.MM_Time[0][2].values[0].prop = "left";
  214.     document.MM_Time[0][2].values[1] = new Array(332,332,333,333,333,333,333,334,334,334,335,335,335,335,335,335,335,335,335,335,335,335,335,335);
  215.     document.MM_Time[0][2].values[1].prop = "top";
  216.     if (!ns) {
  217.         document.MM_Time[0][2].values[0].prop2 = "style";
  218.         document.MM_Time[0][2].values[1].prop2 = "style";
  219.     }
  220.     document.MM_Time[0][3] = new String("sprite");
  221.     document.MM_Time[0][3].slot = 2;
  222.     if (ns)
  223.         document.MM_Time[0][3].obj = document["Layer3"];
  224.     else
  225.         document.MM_Time[0][3].obj = document.all ? document.all["Layer3"] : null;
  226.     document.MM_Time[0][3].keyFrames = new Array(1, 13, 24);
  227.     document.MM_Time[0][3].values = new Array(2);
  228.     document.MM_Time[0][3].values[0] = new Array(31,31,32,32,33,33,34,34,35,35,36,37,37,36,35,35,34,33,32,31,30,29,28,27);
  229.     document.MM_Time[0][3].values[0].prop = "left";
  230.     document.MM_Time[0][3].values[1] = new Array(337,337,337,337,336,336,336,336,336,336,335,335,335,335,335,335,336,336,336,336,336,337,337,337);
  231.     document.MM_Time[0][3].values[1].prop = "top";
  232.     if (!ns) {
  233.         document.MM_Time[0][3].values[0].prop2 = "style";
  234.         document.MM_Time[0][3].values[1].prop2 = "style";
  235.     }
  236.     document.MM_Time[0].lastFrame = 31;
  237.     for (i=0; i<document.MM_Time.length; i++) {
  238.         document.MM_Time[i].ID = null;
  239.         document.MM_Time[i].curFrame = 0;
  240.         document.MM_Time[i].delay = 1000/document.MM_Time[i].fps;
  241.     }
  242. }
  243. //-->
  244. </script>
  245.  
  246. </head>
  247. <bgsound id="BackgroundSound" type="audio/midi" src="../audio/You Are My Sunshine.mid" repeat="1" loop="-1">
  248. <body bgcolor="#A5E6A7" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="MM_timelinePlay('Timeline1');MM_preloadImages('../image/flower_move.gif')">
  249. <div id="Layer8" style="position:absolute; left:54px; top:77px; width:333px; height:118px; z-index:14" class="ParentLayer"> 
  250.   <a id="Link8" name="">
  251.     <p id="uText02" class="TextHolder02">Here's a great shot that I enhanced with Photo Explosion. And check out the video clip!</p>
  252.   </a> 
  253. </div>
  254. <div id="Layer1" style="position:absolute; left:0px; top:0px; width:763px; height:426px; z-index:1"> 
  255.   <img src="../image/web_card2_bg.gif"></div>
  256. <div id="Layer5" style="position:absolute; left:401px; top:75px; width:278px; height:159px; z-index:5"> 
  257.   <a id="Link5" name="">
  258.     <img id="uImage02" src="../image/gen02-photo2.gif" width="362" height="284" class="Moveable01">
  259.    </a>
  260. </div>
  261. <div id="Layer6" style="position:absolute; left:639px; top:359px; width:50px; height:44px; z-index:6">
  262.     <a id="Link6" name="">
  263.         <img src="../image/flower_move.gif" width="59" height="62">
  264.     </a>
  265. </div>
  266. <div id="Layer14" style="position:absolute; left:5px; top:13px; width:747px; height:52px; z-index:7" class="ParentLayer"> 
  267.     <a id="Link14" name="">
  268.         <p id="uText01" class="TextHolder01">Home Sweet Home</p>
  269.     </a> 
  270. </div>
  271. <div id="Layer4" style="position:absolute; left:666px; top:20px; width:36px; height:38px; z-index:11">
  272.     <a    id="Link4" 
  273.         name="" 
  274.         onMouseOut="MM_swapImgRestore()" 
  275.         onMouseOver="MM_swapImage('uImage8','','../image/flower_move.gif',1)"> 
  276.         <img id="uImage8" border="0" src="../image/gen02-flower.gif" width="52" height="53" class="Moveable01">
  277.     </a>
  278. </div>
  279. <div id="Layer9" style="position:absolute; left:1px; top:26px; width:36px; height:39px; z-index:15">
  280.     <a id="Link9" name="">
  281.         <img src="../image/gen02-flower.gif" width="36" height="36">
  282.     </a>
  283. </div>
  284.  
  285. <div id="Layer10" style="position:absolute; left:443px; top:125px; width:274px; height:177px; z-index:16" class="ParentLayer"> 
  286.     <a id="Link10" name="">
  287.         <img id="uImage01" src="../image/vit_3_photo.JPG" width="273" height="175" name="uImage01;273;173" class="ImageHolder">
  288.     </a> 
  289. </div>
  290. <div id="Layer2" style="position:absolute; left:37px; top:332px; width:210px; height:102px; z-index:18">
  291.     <a id="Link2" name="">
  292.         <img src="../image/gen02-thao1.gif" width="208" height="98">
  293.     </a>
  294. </div>
  295. <div id="Layer3" style="position:absolute; left:31px; top:337px; width:205px; height:100px; z-index:19">
  296.     <a id="Link3" name="">
  297.         <img src="../image/gen02-thao2.gif" width="207" height="98">
  298.     </a>
  299. </div>
  300.  
  301. <div id="VideoBorder" class="ParentLayer" style="visibility:hidden; position:absolute; width:30px; height:30px; z-index:69; left: 0px; top: 0px; border-width:5px;"> 
  302. </div>
  303.  
  304. <div id="VideoLayer" style="position:absolute; left:48px; top:198px; width:160px; height:120px; z-index:20" class="ParentLayer">
  305.     <a id="Link7" name="">
  306.         <img id="uVideo01" class="VideoHolder" type="video/avi" dynsrc="../video/Happy Times.avi" width="160" height="120" repeat="1" loop="-1">
  307.     </a>
  308. </div>
  309.  
  310. <div id="Layer13" class="ParentLayer" style="position:absolute; width:252px; height:21px; z-index:17; left: 372px; top: 362px"> 
  311.     <div align="center"> 
  312.         <a id="Link13" name="http://www.novadevelopment.com">
  313.             <p id="uLogo01" align="right" class="Fixed01"> 
  314.         </a> 
  315.     </div>
  316. </div>
  317. </body>
  318.  
  319. <script language="JavaScript" src="../../WebCard.js">
  320. </script>
  321.  
  322. </html>
  323.