사이트 내 전체검색
마우스를 링크된 그림위에 가져다 대면 깜박거리는 블렌딩 효과
https://cmd.kr/javascript/204 URL이 복사되었습니다.

본문

<!-- 블렌딩효과 START-->

<SCRIPT>
var globopObject;
var opIndex=0;
var cleared=true;
var direction=10;

function dynOpacity(opObject,stop)
{
if (stop)
{
clearInterval(window.tm);
cleared=true;
opIndex=10;
return;
}
globopObject=opObject;
if (opIndex>110) direction=-4;
if (opIndex<0) direction=4;
opIndex+=direction;
globopObject.style.filter='alpha(opacity:' + opIndex + ')';
if (cleared)
{
window.tm=setInterval("dynOpacity(globopObject,false);",1);
cleared=false;
}
//alert(window.tm);

}

function handleevent()
{

if (event.type=="mouseover")
  if(event.srcElement.tagName=="IMG")
      if (event.srcElement.parentElement.tagName=="A")
    {
 dynOpacity(event.srcElement,false);
 }
if (event.type=="mouseout")
  if(event.srcElement.tagName=="IMG")
    {
 event.srcElement.style.filter="";
 dynOpacity(event.srcElement,true);
 }
}
document.onmouseover=handleevent;
document.onmouseout=handleevent;

</SCRIPT>
<!-- 블렌딩효과 END -->

출처 : http://www.aircon1004.com/data/bbs/board.php?bo_table=pds1&wr_id=16

댓글목록

등록된 댓글이 없습니다.

831 (11/17P)

Search

Copyright © Cmd 명령어 52.15.160.43