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
|
<html>
<head>
<script type="text/javascript">
function scrollTwin(f1, f2)
{
document.frames[f1].document.body.onscroll = function(){
window.parent.document.frames[f2].scroll(0,window.parent.document.frames[f1].document.body.scrollTop);
}
document.frames[f2].document.body.onscroll = function(){
window.parent.document.frames[f1].scroll(0,window.parent.document.frames[f2].document.body.scrollTop);
}
}
</script>
<style type="text/css">
.ff1 {
margin-left:230px;
}
.ff2 {
margin-left:230px;
}
</style>
</head>
<body onLoad="scrollTwin('frame1','frame2')">
<p> </p>
<iframe class="ff1" src="toto.html" id="frame1" width="800" height="200" scrolling="auto" frameborder="0" align="middle"></iframe>
<p> </p><p> </p>
<iframe class="ff2" src="toto.html" id="frame2" width="800" height="200" frameborder="0" scrolling="auto" align="middle"></iframe>
</body>
</html> |
Partager