#flyout { border: solid 2px Gray; background-color: #FFF999; width: 300px; height: 100px; display: none; } 플라이아웃을 보려면 클릭하세요 이건 플라이아웃이야 [Ctrl A 모두 선택 참고: 외부 J를 도입해야 하는 경우 실행하려면 새로 고쳐야 합니다. ] var flyoutTimer; function mouseOutEvent() { //Hide flyout after 1 second when the mouse move out of the flyout zone flyoutTimer = setTimeout(hideFlyout, 1000); } function mouseOverEvent() { //Clear the timer when the mouse move over the flyout clearTimeout(flyoutTimer); } function hideFlyout() { document.getElementById("flyout").style.display = "none"; } function showFlyout() { document.getElementById("flyout").style.display = "block"; mouseOutEvent(); }