HTML-szerkesztés kezdőknek!!!
  • Dj Faustus #6489
    Akkor csinálsz 3 <div>-et (ezekbe belehelyezed az <iframe>-eket), aminek egyenként adsz id attribútumot. Javascriptben meg egyenként hivatkozol rájuk:
    <div id="containerA" style="width:320px; height: 320px; overflow:auto;">
    <iframe src="http://pcforum.hu" scrolling="no" width="1000" height="1000"></iframe>
    </div>
    <div id="containerB" style="width:320px; height: 320px; overflow:auto;">
    <iframe src="http://sg.hu" scrolling="no" width="1000" height="1000"></iframe>
    </div>
    <div id="containerC" style="width:320px; height: 320px; overflow:auto;">
    <iframe src="http://weblabor.hu" scrolling="no" width="1000" height="1000"></iframe>
    </div>
    <script type="text/javascript">
    document.getElementById('containerA').scrollLeft=340; document.getElementById('containerA').scrollTop=238; document.getElementById('containerA').style.overflow='hidden';
    document.getElementById('containerB').scrollLeft=340; document.getElementById('containerB').scrollTop=238; document.getElementById('containerB').style.overflow='hidden';
    document.getElementById('containerC').scrollLeft=340; document.getElementById('containerC').scrollTop=238; document.getElementById('containerC').style.overflow='hidden';
    </script>