Posted by chrisdude911 on 04/28/06 13:56
here is my ccode
<html>
<head>
<title>Pics</title>
<style>
..small {height:100px;margin:2px;}
..large {height:600px;border:black 2px solid;}
</style>
<script type='text/javascript'>
function toPicbox(x){
document.getElementById('picbox').src = x.src;
}
</script>
<div align="center">
<img src='startempty.jpg' id="picbox" class='large'>
</div>
<style type="text/css">
#imgbox {
width: 300px;
height: 1000px;
overflow: auto;
}
</style>
<div id="imgbox">
<table border"2">
<tr>
<td><img src="guitar.jpg" class='small' onclick='toPicbox(this)'>
</td>
</tr>
<tr><td><img src="startempty.jpg" class='small'
onclick='toPicbox(this)'></td></tr>
</table>
</div>
</body>
</html>
[Back to original message]
|