|
|
Source code |
1 2 3 4 |
<?php
######## ########### #### #### ####### ########### ################ #### #### ########### ############# ################## #### #### #### ##### #### ######################## #### #### #### #### #### ############### #### ### ####### #### #### ############## #### #### ####### #### ######################## #### ### #### #### #### ################## ######## #### #### #### #### ################ ###### ############# ############## ############ ##### ########## ############ include("includes/config.inc.php");?><!DOCTYPE html><html><head> <meta charset="utf-8" /> <title>CMK</title> <meta name="viewport" content="target-densitydpi=device-dpi, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0" /> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> <link rel="stylesheet" href="_assets/css/jquery.mobile-1.0a3.css" /> <script type="text/javascript" src="_assets/js/jquery-1.5.1.min.js"></script> <script type="text/javascript" src="_assets/js/jquery.mobile-1.0a3.min.js"></script> </head><body>
<div data-role="page"> <div data-role="header" data-position="fixed" data-theme="b"> <h1>Via Silva</h1> <a href="index" data-icon="home" data-iconpos="notext" data-direction="reverse" class="ui-btn-right jqm-home">Inicio</a> </div> <div data-role="content"><script src="cmg.js"></script>
<div id="panocontent" style="width:100%; height:100%;"> <!-- non html5 / css 3d transforms browser - show this informations --> <div id="nonhtml5infos" style="display:none;"> <table width="100%" height="100%"><tr valign="middle"><td><center> ERROR:<br/> <br/> A Webkit based browser with support for CSS 3D tranforms is necessary to view this page!<br/> At the moment this are only the latest Safari or Chrome browsers or the browsers on iOS devices (iPhone,iPad,iPod Touch).<br/> <br/> <a href="http://www.apple.com/safari/download/" target="_blank"><img src="http://www.browserchoice.eu/Resources/Images/Safari_logo.jpg" style="border:0;" alt="Get Safari" /></a> <a href="http://www.google.com/chrome/" target="_blank"><img src="http://www.browserchoice.eu/Resources/Images/Chrome_logo.png" style="border:0;" alt="Get Chrome" /></a> <br/> <br/> <br/> </center></td></tr></table> </div> <noscript><table width="100%" height="100%"><tr valign="middle"><td><center>ERROR:<br/><br/>Javascript not activated<br/><br/></center></td></tr></table></noscript> <script> var viewer = createPanoViewer({swf:"pano.swf", xml:"cmg.xml", target:"panocontent"}); if ( viewer.isHTML5possible() ) { viewer.useHTML5("always"); viewer.embed(); } else { // show error message document.getElementById("nonhtml5infos").style.display = "inline"; } </script></div></div></div></body></html>
|
|
|
Source code |
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Promotion Robert Alday - Les Baignots -</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="images/apple_touch_icon.png"/>
<link rel="stylesheet" href="../../css/jquery.mobile-1.0b2.min.css" />
<link rel="stylesheet" href="../../css/style.css" />
<script src="../../js/tour.js"></script>
<script src="../../js/jquery-1.6.2.min.js"></script>
<script src="../../js/jquery.mobile-1.0b2.min.js"></script>
<script>//here's what I found with googling...
jQuery.noConflict();
// Use jQuery via jQuery(...)
jQuery(document).ready(function(){
jQuery("div").hide();
});
// Use Prototype with $(...), etc.
$('someid').hide();
</script>
</head>
<body>
<div data-role="page" data-title="Nos Réalisations">
<div data-role="header" data-theme="b">
<h1>Nos Réalisations</h1>
<a data-theme="c" data-ajax="false" title="Accueil" href="../../index.html" data-icon="home" data-iconpos="notext" data-direction="reverse"></a>
</div><!-- /header -->
<div data-role="content">
<div data-role="none" id="pano">
<noscript>
<b>Attention:</b> <br/>
<br/>
Javascript is not activated. <br/>
<br/>
Please activate it to see the virtual tour <br/>
</noscript>
<script type="text/javascript">
var viewer = createPanoViewer({swf:"tour.swf", target:"pano"});
//viewer.useHTML5("always");
if( viewer.isDevice("iPhone|iPod|iPad") )
{
viewer.addVariable("xml", "iphone.xml");
viewer.addVariable("showErrors", "false");
viewer.embed();
}
else( viewer.isDevice("Android") )
{
viewer.addVariable("xml", "android.xml");
viewer.addVariable("showErrors", "false");
viewer.embed();
}
</script>
</div> <!-- end of krpanoDIV -->
<div data-role="footer" class="footer-docs" data-theme="a">
<p>© 2011 Eboovisite<br />Technopole d'Izarbel<br />245 Allée Théodore Monod,<br />64210 Bidart</p>
</div>
</div>
</body>
</html>
|
|
|
Source code |
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 32 33 |
<!DOCTYPE html>
<html>
<head>
<title>pano</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.0rc1/jquery.mobile-1.0rc1.min.js"></script>
<script type="text/javascript" src="./lib/swfkrpano.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0rc1/jquery.mobile-1.0rc1.min.css" />
</head>
<body>
<div data-role="page" id="Panos">
<div data-role="content">
<ul data-role="listview">
<li><a href="#pano1" target="_self">Pano 1</a></li>
</ul>
</div>
</div>
<div data-role="page" id="pano1">
<noscript>ERROR: Javascript not activated</noscript>
<script>
embedpano({ swf:"./lib/krpano.swf", xml:"./xml/pano1.xml", target:"pano1" });
</script>
</div>
</body>
</html>
|