이제 참고할만한 가치가 있는 지연 숨김 기능(QQ 아바타에 마우스를 올려 정보를 표시하는 것과 유사)을 구현하는 JS 방법을 공유하겠습니다. 모두에게 도움이 되기를 바랍니다.
JS는 지연 숨기기를 구현합니다
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>延迟隐藏</title> <style> #p1{ width:100px; height:100px; background:yellow; border: 5px solid #999; border-radius: 10px; position: absolute; right: 50px; text-align: center; line-height: 100px; margin-bottom:10px; } #p2{ width:200px; float: left; height:200px; border: 5px solid #999; border-radius: 10px; position: absolute; right:160px; text-align: center; line-height: 200px; background:green; display:none; } </style> <script> window.onload=function(){ var p1=document.getElementById("p1"); p1.innerHTML="鼠标请放上!"; var p2=document.getElementById('p2'); p2.innerHTML="鼠标请移开!"; var timer=null; p1.onmouseover= function(){ clearTimeout(timer); p2.style.display='block'; }; p1.onmouseout= function(){ clearTimeout(timer); timer= setTimeout(function(){ p2.style.display='none'; }, 700); }; p2.onmouseover=function(){ clearTimeout(timer); }; p2.onmouseout=function(){ clearTimeout(timer); timer=setTimeout(function(){p2.style.display='none';},700); } } </script> </head> <body> <p id="p1"></p> <p id="p2"></p> </body> </html>
위 내용은 제가 모든 사람을 위해 정리한 내용입니다. 앞으로 모든 사람에게 도움이 되기를 바랍니다.
관련 기사:
WeChat 애플릿에서 슬라이더 구성 요소를 사용하는 방법
위 내용은 JS를 통해 지연 숨기기 기능을 구현하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!