1.jsコード
次のようにコードをコピーします。
//******************デフォルト設定の定義**********************
tPopWait=50;//tWait をミリ秒間続けた後にプロンプトを表示します。
tPopShow=5000;//tShow をミリ秒間表示した後、プロンプトを閉じます
showPopStep=20;
ポップ不透明度=99;
//******************内部変数定義******************
sPop=null;
curShow=null;
tFadeOut=null;
tFadeIn=null;
tFadeWaiting=null;
document.write("<mce:style type='text/css'id='defaultPopStyle'><!--
");
document.write(".cPopText { 行区切り : 通常;単語区切り : ブレークオール ; 背景色: #FEFCF3;カラー:#000000; 境界線: 1px #E7B68C ソリッド;パディングトップ: 2px; パディング右: 4px; パディング左: 4px; フォントサイズ: 12px;幅:96px; フィルター: アルファ(不透明度=0)}");
document.write("
--></mce:style><style type='text/css'id='defaultPopStyle' mce_bogus="1">");
document.write(".cPopText { 行区切り : 通常;単語区切り : ブレークオール ; 背景色: #FEFCF3;カラー:#000000; 境界線: 1px #E7B68C ソリッド;パディングトップ: 2px; パディング右: 4px; パディング左: 4px; フォントサイズ: 12px;幅:96px; フィルター: アルファ(不透明度=0)}");
document.write("</style>");
document.write("<div id='dypopLayer' style="position:absolute;z-index:1000;" mce_style="position:absolute;z-index:1000;" class='cPopText'></div> ");
関数 showPopupText(){
var o=event.srcElement;
MouseX=event.x;
マウスY=イベント.y;
if(o.alt!=null && o.alt!=""){o.dypop=o.alt;o.alt=""};
if(o.title!=null && o.title!=""){o.dypop=o.title;o.title=""};
if(o.dypop!=sPop) {
sPop=o.dypop;
ClearTimeout(curShow);
クリアタイムアウト(tFadeOut);
クリアタイムアウト(tFadeIn);
clearTimeout(tFadeWaiting);
if(sPop==null || sPop=="") {
dypopLayer.innerHTML="";
dypopLayer.style.filter="アルファ()";
dypopLayer.filters.Alpha.opacity=0;
}
それ以外 {
if(o.dyclass!=null) PopStyle=o.dyclass
それ以外の場合は、popStyle="cPopText";
curShow=setTimeout("showIt()",tPopWait);
}
}
}
関数 showIt(){
dypopLayer.className=popStyle;
dypopLayer.innerHTML=sPop;
PopWidth=dypopLayer.clientWidth;
ポップハイト=dypopLayer.clientHeight;
if(MouseX+12+popWidth>document.body.clientWidth) PopLeftAdjust=-popWidth-24
それ以外の場合はpopLeftAdjust=0;
if(MouseY+12+popHeight>document.body.clientHeight)popTopAdjust=-popHeight-24
それ以外の場合はpopTopAdjust=0;
dypopLayer.style.left=MouseX+12+document.body.scrollLeft+popLeftAdjust;
dypopLayer.style.top=MouseY+12+document.body.scrollTop+popTopAdjust;
dypopLayer.style.filter="アルファ(不透明度=0)";
フェードアウト();
}
関数フェードアウト(){
if(dypopLayer.filters.Alpha.opacity<popOpacity) {
dypopLayer.filters.Alpha.opacity+=showPopStep;
tFadeOut=setTimeout("fadeOut()",1);
}
それ以外 {
dypopLayer.filters.Alpha.opacity=popOpacity;
tFadeWaiting=setTimeout("fadeIn()",tPopShow);
}
}
関数 fadeIn(){
if(dypopLayer.filters.Alpha.opacity>0) {
dypopLayer.filters.Alpha.opacity-=1;
tFadeIn=setTimeout("fadeIn()",1);
}
}
document.onmouseover=showPopupText;
2. HTML コードには js コード、使用例のみを含める必要があります
<a href="../UpLoadFile/200911784060017.jpg" target="_blank">大</a><a href="../UpLoadFile/200911784060018.jpg" target="_blank">小</a>