ハイライトON、OFF 変更削除不可 TIME指定 JavaScript指定 スタイルシート指定 カスタマイズ箇所
インラインフレームページを表示する親ページとインラインフレームの2ページをカスタマイズする必要があります。まずは親となるページのソースです。
<HTML XMLNS:t="urn:schemas-microsoft-com:time">
<HEAD>
<TITLE>親ページ</TITLE>
<STYLE type="text/css">
<!--
/*★★★ JavaScriptはもういらない!? ★★★★★★
★ HTML+TIME by〜〜(m--)m ura@ad.il24.net ★
★ URL http://html-time.com */
.time{behavior: url(#default#time2);}
/*★★★★★★★★★★★★★★★★★★★★★★*/
DIV{width:350;border-top:20 solid blue;}
IFRAME{width:350;height:200;}
-->
</STYLE>
<TITLE>透明なインラインフレーム</TITLE>
<SCRIPT LANGUAGE="JavaScript">
<!--
var flag = false
function mouseDown() {
if(flag == true) {
d_left = event.x
d_top = event.y
}
}
document.onmousedown = mouseDown
var m_left
var m_top
function mouseMove() {
if(flag == true) {
m_top = event.y
m_left = event.x
targetFrm.style.pixelTop += m_top - d_top
targetFrm.style.pixelLeft += m_left - d_left
d_top = m_top
d_left = m_left
}
}
document.onmousemove = mouseMove
//-->
</SCRIPT>
</HEAD>
<BODY bgcolor="#ffffd9">
<DIV style="position : absolute;top:25;left:430;" onmousedown="flag=true;targetFrm=this;this.style.zIndex=1;" onmouseup="flag=false;targetFrm='';this.style.zIndex=0;" ondrag="return false">
<IFRAME src="iframe_transparent2.htm" allowTransparency="true"></IFRAME></DIV>
<DIV style="position : absolute;top:105;left:345;" onmousedown="flag=true;targetFrm=this;this.style.zIndex=1;" onmouseup="flag=false;targetFrm='';this.style.zIndex=0;" ondrag="return false">
<IFRAME src="iframe_transparent2.htm" allowTransparency="true"></IFRAME></DIV>
<DIV style="top:175;left:150;position:absolute;" onmousedown="flag=true;targetFrm=this;this.style.zIndex=1;" onmouseup="flag=false;targetFrm='';this.style.zIndex=0;" ondrag="return false">
<IFRAME src="iframe_transparent1.htm" allowTransparency="true"></IFRAME></DIV>
</BODY>
</HTML>
|