CSSで擬似iframeを作成するには
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div style="width:100px; height:100px; overflow:auto; border-style:solid"> | |
aaa<br><br><br><br><br><br><br><br><br><br> | |
</div> |
こんな感じになる。
aaa
これを左寄せで二つ並べるには
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="hidari" style="width:100px; height:100px; overflow:hidden; float:left; border-style:solid"> | |
aaa<br><br><br><br><br><br><br><br><br><br> | |
</div> | |
<div id="migi" style="width:100px; height:100px; overflow:auto; float:left; border-style:solid"> | |
bbb<br><br><br><br><br><br><br><br><br><br> | |
</div> | |
<div style="clear:both"></div> |
でこんな風に。
aaa
bbb
僕が使う都合上、左はoverflow:hiddenにして、右のフレームにしかスクロールバーが出ないようにしている。
右のスクロールバーを動かすと両方のフレームが連動してスクロールされるようにするにはjQueryを使ってこう書く。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function(){ | |
var migi = $("#migi"); | |
var hidari = $("#hidari"); | |
migi.scroll(function(){ | |
hidari.scrollTop(migi.scrollTop()) | |
}); | |
}); |
#migiでscrollイベントが起こったら、#hidariのscrollTopを#migiのscrollTopと同じところまでスクロールする。
ってことをしている。
上のサンプルもちゃんと連動してスクロールされるはず。
MacのSafari, Firefox, Google Chrome, Opera,あとiPhoneのmobileSafari(二本指スクロール)で動作確認した。
0 件のコメント:
コメントを投稿