site-tpe/all.php

125 lines
No EOL
4 KiB
PHP

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<!-- Include EnlighterJS Styles -->
<link rel="stylesheet" type="text/css" href="EnlighterJS/Build/EnlighterJS.min.css" />
<!-- Include MooTools Framework -->
<script type="text/javascript" src="EnlighterJS/MooTools/MooTools-Core-1.5.2.js"></script>
<!-- Include EnlighterJS -->
<script type="text/javascript" src="EnlighterJS/Build/EnlighterJS.min.js" ></script>
<link rel="stylesheet" href="/style.css" />
<link rel="stylesheet" href="index/styleTpe.css" />
<title>achilletoupin.com - TPE</title>
<link rel="shortcut icon" href="index/images/favicon.gif"/>
<script>
function show(id)
{
if(document.getElementById(id + 'd').style.display == 'none'){
document.getElementById(id + 'd').style.display = 'inline';
//document.getElementById(id).style.-ms-transform = 'rotate(0deg)';
//document.getElementById(id).style.-webkit-transform = 'rotate(0deg)';
document.getElementById(id).style.transform = 'rotate(0deg)';
}
else{
document.getElementById(id + 'd').style.display = 'none';
//document.getElementById(id).style.-ms-transform = 'rotate(-90deg)';
//document.getElementById(id).style.-webkit-transform = 'rotate(-90deg)';
document.getElementById(id).style.transform = 'rotate(-90deg)';
}
}
</script>
<script>
function showF(id)
{
if(document.getElementById(id + 'd').style.display == 'none'){
document.getElementById(id + 'd').style.display = 'inline';
//document.getElementById(id).style.-ms-transform = 'rotate(0deg)';
//document.getElementById(id).style.-webkit-transform = 'rotate(0deg)';
document.getElementById(id).style.transform = 'rotate(0deg)';
}
}
</script>
<script>
function showButton(id)
{
if(document.getElementById(id + 'd').style.display == 'none'){
document.getElementById(id + 'd').style.display = 'inline';
document.getElementById(id).innerHTML = 'Masquer';
}
else{
document.getElementById(id + 'd').style.display = 'none';
document.getElementById(id).innerHTML = 'Afficher';
}
}
</script>
</head>
<body>
<?php include("index/includes/headerAll.php"); ?>
<section>
<article>
<h2><a onclick=show('intro')><img title="Réduire" id="intro" src="index/images/fleche_orange_bas.png"></img></a>Notice - Introduction</h2>
<?php include("index/includes/intro.php"); ?>
<h2><a onclick=show('son')><img title="Réduire" id="son" src="index/images/fleche_orange_bas.png"></img></a>Th&eacute;orie basique du son : l&#39;onde sonore</h2>
<?php include("index/includes/son.php"); ?>
<h2><a onclick=show('cs')><img title="Réduire" id="cs" src="index/images/fleche_orange_bas.png"></img></a>La chauve-souris</h2>
<?php include("index/includes/c-s.php"); ?>
<h2><a onclick=show('ex1')><img title="Réduire" id="ex1" src="index/images/fleche_orange_bas.png"></img></a>Exp&eacute;rience 1 : les ultrasons</h2>
<?php include("index/includes/ex1.php"); ?>
<h2><a onclick=show('ex2')><img title="Réduire" id="ex2" src="index/images/fleche_orange_bas.png"></img></a>Expérience 2 : le robot</h2>
<?php include("index/includes/ex2.php"); ?>
<h2><a onclick=show('ccln')><img title="Réduire" id="ccln" src="index/images/fleche_orange_bas.png"></img></a>Conclusion</h2>
<?php include("index/includes/ccln.php"); ?>
<h2><a onclick=show('src')><img title="Réduire" id="src" src="index/images/fleche_orange_bas.png"></img></a>Sources</h2>
<?php include("index/includes/src.php"); ?>
<!-- Initialize EnlighterJS -->
<meta name="EnlighterJS" content="Advanced javascript based syntax highlighting" data-indent="4" data-selector-block="pre" data-selector-inline="code" data-language="c" />
</article>
<?php include("index/includes/aside.php"); ?>
</section>
<?php include("index/includes/footer.php"); ?>
</body>
</html>