parent
6c599de5a1
commit
04066d32a5
@ -0,0 +1,36 @@ |
||||
<html> |
||||
<h2>Experience par lieu</h2> |
||||
<ul> |
||||
<li><a target="_blank" class="experiencelinks" href="https://fabien.benetou.fr/pub/home/CEREMA/?">Quai de la Ruelle</a></li> |
||||
<li><a target="_blank" class="experiencelinks" href="https://fabien.benetou.fr/pub/home/CEREMA/?position=1">Les Baquets</a></li> |
||||
</ul> |
||||
|
||||
<h2>Options</h2> |
||||
<ul> |
||||
<li>Forcer l'affichage des performances |
||||
<ul> |
||||
<li onclick="forceStats(this)">true</li> |
||||
<li onclick="forceStats(this)">false</li> |
||||
</ul> |
||||
</li> |
||||
<li>Hauteur des batiments : |
||||
<ul> |
||||
<li onclick="adjustHeight(this)">10</li> |
||||
<li onclick="adjustHeight(this)">15</li> |
||||
<li onclick="adjustHeight(this)">20</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
|
||||
<h2>Documentation</h2> |
||||
Utiliser <a href="https://hmd.link">hmd.link</a> dans le navigateur Web du casque pour partager le lien genere ou <a href="https://fabien.benetou.fr/pub/home/CEREMA/portail.html">ce portail</a>. |
||||
<script> |
||||
var links = Array.from(document.querySelectorAll(".experiencelinks")) |
||||
function adjustHeight(param){ |
||||
links.map( e => e.href += "&height="+param.textContent) |
||||
} |
||||
function forceStats(param){ |
||||
links.map( e => e.href += "&forcestats="+param.textContent) |
||||
} |
||||
</script> |
||||
<html> |
Loading…
Reference in new issue