메뉴 네비 레이어 서서히 없어지는거

· 11년 전 · 3734
<script language="javascript">
var iDelay = 750 // 지연시간
var sDisplayTimer = null, oLastItem
function showDetails(sDest) {
 if (document.getElementById!=null) {
  stopTimer()
  dest = document.all[sDest]
  if ((oLastItem!=null) && (oLastItem!=dest))
   hideItem()
  if (dest) {
   dest.style.visibility = "visible"
  }
  oLastItem = dest
 }
}
function stopTimer() {
 clearTimeout(sDisplayTimer)
}
function startTimer(el) {
  stopTimer()
  sDisplayTimer = setTimeout("hideItem()",iDelay)
}
function hideItem() {
 if (oLastItem)
  oLastItem.style.visibility="hidden"
}
function checkOver() {
 if ((oLastItem) && (oLastItem==event.target)) {
  stopTimer()
 }
}
function checkOut() {
 if (oLastItem==event.target)
  startTimer(event.target)
}
document.onmouseover = checkOver
document.onmouseout = checkOut
</script>
<td onmouseout="topmenu1.src='/images/topmenu_01.gif';startTimer(this)" onmouseover="showDetails('submenu_1');topmenu1.src='/images/topmenur_01.gif'"><a href="/product/list.asp" alt="제품전체보기"><img src="/images/topmenu_01.gif" name="topmenu1"></a></td>
자바스크립트 메뉴레이어 입니다..
다른곳에서 소스를 퍼와서..  브라우져 호환성에 맞춰서 약간 손을 보았습니다..
http://www.cube333.co.kr   이사이트 상단 메뉴에 사용했던 메뉴레이어입니다.
|
댓글을 작성하시려면 로그인이 필요합니다. 로그인

개발자팁

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
JavaScript 11년 전 조회 3,256
PHP 11년 전 조회 1.5만
기타 11년 전 조회 2,454
PHP 11년 전 조회 3,678
PHP 11년 전 조회 3,929
JavaScript 11년 전 조회 4,112
기타 11년 전 조회 8,376
MySQL 11년 전 조회 3,879
JavaScript 11년 전 조회 2,502
JavaScript 11년 전 조회 4,624
MySQL 11년 전 조회 5,181
웹서버 11년 전 조회 2,781
PHP 11년 전 조회 5,382
PHP 11년 전 조회 3,536
JavaScript 11년 전 조회 3,735
기타 11년 전 조회 4,303
JavaScript 11년 전 조회 6,042
jQuery 11년 전 조회 4,087
PHP 11년 전 조회 7,764
PHP 11년 전 조회 4,042
jQuery 11년 전 조회 1.4만
MySQL 11년 전 조회 1.6만
PHP 11년 전 조회 3,850
PHP 11년 전 조회 7,712
JavaScript 11년 전 조회 3,240
JavaScript 11년 전 조회 9,733
PHP 11년 전 조회 6,680
JavaScript 11년 전 조회 6,082
JavaScript 11년 전 조회 5,321
jQuery 11년 전 조회 3,147
🐛 버그신고