|
|
Quellcode |
1 2 3 4 5 6 |
<div class="tour"> <object width="940" height="480"> <embed src="Visit.swf" width="940" height="480" allowFullScreen="true"> </embed> </object> </div> |
|
|
Quellcode |
1 2 3 4 5 6 |
<div class="tour"> <object width="940" height="480"> <embed src="MySubFolder/Visite.swf" width="940" height="480" allowFullScreen="true"> </embed> </object> </div> |
|
|
Quellcode |
1 2 3 4 5 6 |
<div class="tour"> <object width="940" height="480"> <embed src="Appart_1/Visite.swf" width="940" height="480" allowFullScreen="true"> </embed> </object> </div> |
|
|
Quellcode |
1 2 3 4 5 6 |
<div class="tour"> <object width="940" height="480"> <embed src="Visite.swf" width="940" height="480" allowFullScreen="true"> </embed> </object> </div> |
|
|
Quellcode |
1 2 3 4 5 6 |
<div class="tour"> <object width="940" height="480"> <embed src="Visite.swf" width="940" height="480" allowFullScreen="true" flashvars="xml=Appart_1/visite.xml"> </embed> </object> </div> |
|
|
Quellcode |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
<html>
<head>
<title>Visite</title>
</head>
<style>
body{ font-family:Arial, Helvetica, sans-serif; font-size:10px; color:#FFFFFF; background-color:#000000; margin:0; padding:0; }
* html, * html body{ overflow: hidden; }
a{ color:#AAAAAA; text-decoration:underline; }
a:hover{ color:#FFFFFF; text-decoration:underline; }
</style>
<body>
<div id="krpanoDIV">
<noscript><table width="100%" height="100%"><tr valign="middle"><td><center>ERROR:<br><br>Javascript not activated<br><br></center></td></tr></table></noscript>
</div>
<script type="text/javascript" src="swfkrpano.js"></script>
<script type="text/javascript">
// <![CDATA[
var swf = createswf("Visite.swf", "krpanoSWFObject", "100%", "100%");
swf.addVariable("xml", "Appart_1/Visite.xml");
swf.embed("krpanoDIV");
// ]]>
</script>
</body>
</html>
|
|
|
Quellcode |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Exemple de Visite - BubbleFlash 2010 </title> <link rel="stylesheet" type="text/css" href= "default.css"> </head> <body> <div id="conteneur"> <div id="titre"> <h1><br/>Visite de l'appartement</h1> </div> <p> Bienvenue sur un exemple de visite. <br /> <br /> </p> <br/> <div id="tour"> <object width="940" height="480"> <embed src="Visite.swf" width="940" height="480" allowFullScreen="true" class="visite"> </embed> </object> </div> </div> </body> </html> |
|
|
Quellcode |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Exemple de Visite - BubbleFlash 2010 </title>
<link rel="stylesheet" type="text/css" href= "default.css">
</head>
<body>
<div id="conteneur">
<div id="titre">
<h1><br/>Visite de l'appartement</h1>
</div>
<p> Bienvenue sur un exemple de visite. </p>
<div id="tour">
<noscript><table width="100%" height="100%"><tr valign="middle"><td><center>ERROR:<br><br>Javascript not activated<br><br></center></td></tr></table></noscript>
</div>
</div>
<script type="text/javascript" src="swfkrpano.js"></script>
<script type="text/javascript">
// <![CDATA[
var swf = createswf("Appart_1/Visite.swf", "krpanoSWFObject", "100%", "100%");
swf.addVariable("xml", "Appart_1/Visite.xml");
swf.embed("tour");
// ]]>
</script>
</body>
</html>
|