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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
<html xmlns="http://www.w3.org/1999/xhtml xml:lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Cp1252"/>
<script language="JavaScript" type="text/javascript">
var browserName=navigator.appName;
if (browserName=="Netscape")
{
$browser ="SAF";
}
else
{
if (browserName=="Microsoft Internet Explorer")
{
$browser ="IE";
}
else
{
$browser ="SAF";
}
}
</script>
</head>
<script language="JavaScript" type="text/javascript">
function Lire(id)
{
alert(id)
document.getElementById(id).style.display='block';
}
function Ecouter(id)
{
document.getElementById(id).style.display='none';
}
function Sound(id)
{
document.getElementById(id).style.display='block';
document.getElementById("ecouterSAF"+id).src="img/btn_ecouter_OK.png";
document.getElementById("lireSAF"+id).src="img/btn_lire.png";
}
function NoSound(id)
{
document.getElementById(id).style.display='none';
document.getElementById("lireSAF"+id).src="img/btn_lire_OK.png";
document.getElementById("ecouterSAF"+id).src="img/btn_ecouter.png";
}
function liresound (soundFile) {
document.getElementById("liresound").src=soundFile;
document.getElementById("ecouterIE"+id).src="img/btn_ecouter_OK.png";
document.getElementById("lireIE"+id).src="img/btn_lire.png";
}
function arretsound (soundFile) {
document.all.sound.src="";
document.getElementById("lireIE"+id).src="img/btn_lire_OK.png";
document.getElementById("ecouterIE"+id).src="img/btn_ecouter.png";
}
function varNavig() {
var id;
if ($browser == "IE")
{
for (id=1; id<=32; id++){
document.getElementById("tbIE"+id).style.display="block";
document.getElementById("tbSAF"+id).style.display="none";
}
}else{
for (id=1; id<=32; id++){
document.getElementById("tbSAF"+id).style.display="block";
document.getElementById("tbIE"+id).style.display="none";
}
}
}
</script>
<div data-role="page" data-theme="b">
<div data-role="content" data-theme="b">
<table style="text-align: left">
<tr>
<td Colspan=2>
<img src="image1.jpg" width="100px" height="141.6px"/>
</td>
</tr>
<tr>
<td>
<table id="tbIE1" style="display:none; border: 2px solid red">
<tr>
<td>
<a href="#" onclick="Lire('1');arretsound()"><img id="lireIE" src="img/btn_lire.png" /></a>
</td>
<td>
<a href="#" onclick="Ecouter('1');liresound('texte1.mp3')"><img id="ecouterIE" src="img/btn_ecouter.png" /></a>
</td>
</tr>
</table>
<table id="tbSAF1" style="display:none; border: 2px solid blue">
<tr>
<td>
<a href="#" onclick="Lire('1');NoSound('Sound1')"><img id="lireSAF" src="img/btn_lire.png" /></a>
</td>
<td>
<bgsound id="sound" src=""></bgsound>
<a href="#" onclick="Ecouter('1');Sound('Sound1')"><img id="ecouterSAF" src="img/btn_ecouter.png" /></a>
</td>
</tr>
</table>
<script type="text/javascript">varNavig();</script>
</td>
</tr>
</table>
<div id="Sound1" style="display:none; text-align: center; height:30px; border: 2px solid red">
<embed id="audio" src="texte1.wav" style="height:30px; ">
</div>
<div id="1" style="display:none; text-align: left;">
<!Texte 1 -->
</div>
<table style="text-align: left">
<tr>
<td Colspan=2>
<img src="image2.jpg" width="100px" height="141.6px"/>
</td>
</tr>
<tr>
<td>
<table id="tbIE2" style="display:none; border: 2px solid red">
<tr>
<td>
<a href="#" onclick="Lire('2');arretsound()"><img id="lireIE" src="img/btn_lire.png" /></a>
</td>
<td>
<a href="#" onclick="Ecouter('2');liresound('texte2.mp3')"><img id="ecouterIE" src="img/btn_ecouter.png" /></a>
</td>
</tr>
</table>
<table id="tbSAF2" style="display:none; border: 2px solid blue">
<tr>
<td>
<a href="#" onclick="Lire('2');NoSound('Sound2')"><img id="lireSAF" src="img/btn_lire.png" /></a>
</td>
<td>
<bgsound id="sound" src=""></bgsound>
<a href="#" onclick="Ecouter('2');Sound('Sound2')"><img id="ecouterSAF" src="img/btn_ecouter.png" /></a>
</td>
</tr>
</table>
<script type="text/javascript">varNavig();</script>
</td>
</tr>
</table>
<div id="Sound2" style="display:none; text-align: center; height:30px; border: 2px solid red">
<embed id="audio" src="texte2.wav" style="height:30px; ">
</div>
<div id="2" style="display:none; text-align: left;">
<!Texte 2 -->
</div>
<!Code pour 3 à 10 -->
</div>
</div> |