1. JS 코드
다음과 같이 코드 코드를 복사합니다.
//********************기본 설정 정의************************
tPopWait=50;//tWait에 밀리초 동안 머문 후 프롬프트를 표시합니다.
tPopShow=5000;//tShow를 밀리초 동안 표시한 후 프롬프트를 닫습니다.
showPopStep=20;
팝불투명도=99;
//********************내부 변수 정의********************
스포=널;
curShow=null;
tFadeOut=널;
tFadeIn=널;
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;
마우스X=event.x;
MouseY=event.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);
ClearTimeout(tFadeOut);
ClearTimeout(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;
popHeight=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)";
용암();
}
함수 fadeOut(){
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>