body:
ציטוט:
<body>
<div id="main">
<div id="menu">
<ul>
<?php include('blocks/menu.php'); ?>
</ul>
</div>
<div id="bg">
<div id="banner-m"></div>
<div id="text">
<p>גלריה</p>
</div>
<div id="paget"></div>
<div id="page">
<table>
<tr>
<td><a href="#" onclick="javascript:showhide('picture1');">תמונה 1</a></td>
<td><a href="#" onclick="javascript:showhide('picture2');">תמונה 2</a></td>
<td><a href="#" onclick="javascript:showhide('picture3');">תמונה 3</a></td>
<td><a href="#" onclick="javascript:showhide('picture4');">תמונה 4</a></td>
<td><a href="#" onclick="javascript:showhide('picture5');">תמונה 5</a></td>
</tr>
</table>
<br>
<table cellpadding="9" cellspacing="6" class="table" align="center">
<tr>
<td class="table" id="picture1" style="display:none;"><img src="http://www.introx-serv.co.il/img/1.png" border="0"></td>
<td class="table" id="picture2" style="display:none;"><img src="http://www.introx-serv.co.il/img/2.png" border="0"></td>
<td class="table" id="picture3" style="display:none;"><img src="http://www.introx-serv.co.il/img/3.png" border="0"></td>
<td class="table" id="picture4" style="display:none;"><img src="http://www.introx-serv.co.il/img/4.png" border="0"></td>
</tr>
</table>
</div>
</div>
</div>
</div>
</body>
|
javescript:
ציטוט:
<script language="javascript">
function showhide(id) {
if (document.getElementById(id).style.display == "none") {
document.getElementById(id).style.display = "inline"
}
else {
document.getElementById(id).style.display = "none";
}
}
</script>
|
__________________
Resellers.co.il - אירוח אתרים
מקבוצת GlobalSolution ישראל
Last edited by Resellers.co.il; 21-10-12 at 18:14..
|