이번에는 부팅 시간을 표시하는 JS+jQuery를 소개하겠습니다. (초 단위로 정확함) JS+jQuery에서 부팅 시간을 표시하는 주의 사항은 무엇입니까?
구현 원칙:
클릭 이벤트를 닫기 버튼에 바인딩하고 클릭 후 애니메이션 효과를 트리거합니다. jQuery의 animate 메소드를 사용하여 먼저 날씨를 표시하는 상자의 높이를 0으로 변경한 다음 날씨와 이벤트가 포함된 전체 상자의 너비를 0으로 변경하고 마지막으로 표시 속성 값을 없음으로 설정하여 닫기 버튼이 사라지게 합니다.
구현 코드:
<!DOCTYPE html> <html> <head> <title>仿360开机效果</title> <meta charset="utf-8"> <style type="text/css"> *{ padding: 0; margin: 0; } .box{ width: 320px; position: fixed; bottom: 0; right: 0; box-shadow: 1px 1px 10px #2d2d2d; } #close{ position: absolute; top: 0; right: 0; width: 30px; height: 20px; cursor: pointer; background-color: red; color: pink; font-weight: bold; text-align: center; } .hd{ width: 320px; height: 300px; background-color: #03c03c; color: #fff; font-size: 70px; line-height: 300px; text-align: center; } .bd{ width: 320px; height: 100px; background-color: #fffc00; font-size: 30px; line-height: 100px; text-align: center; } </style> </head> <body> <p class="box"> <span id="close">X</span> <p class="hd" id="t">1分12秒</p> <p class="bd" id="b">天气:晴天</p> </p> <!-- 引入jQuery --> <script type="text/javascript" src="./jquery1.0.0.1.js"></script> <script type="text/javascript"> window.onload = function(){ var close = document.getElementById("close"); var box = close.parentNode; var b = document.getElementById("b"); // 给关闭按钮绑定点击事件 close.onclick = function(){ animate(b, {"height":0}, function(){ animate(box,{"width":0}); }); close.style.display = "none"; } } </script> </body> </html>
PS: JS는 시간 카운트다운을 구현합니다
<script type="text/javascript"> var maxtime = 1350057600 //截止到的日期 var now=parseInt((new Date().getTime())/1000);//获取当前的日期 var cha_time=maxtime-now;//中间所差的时间
다음 방법은 시간 차이를 카운트다운 문자열로 결합한 다음 페이지의 해당 위치에 배치하여 실시간 새로 고침을 구현합니다
function CountDown(){ if(cha_time>=0){ var day = Math.floor(cha_time/3600/24); var hour= Math.floor((cha_time/3600)%24); var minutes = Math.floor((cha_time/60)%60); var seconds = Math.floor(cha_time%60); msg = "离结束还有"+day+"天"+hour+"小时"+minutes+"分"+seconds+"秒"; $(".ws_sg_con_big,.ws_sg_con_small").find("dd").html(msg); --cha_time; } else{ clearInterval(timer); alert("时间到,结束!"); } } timer = setInterval("CountDown()",1000); </script>
이 기사의 사례를 읽으신 후 이 방법을 마스터하신 것으로 생각됩니다. 흥미로운 정보가 있으니 PHP 중국어 웹사이트의 다른 관련 기사도 주목해 주세요!
추천 도서:
위 내용은 JS+jQuery는 부팅 시간을 표시합니다(초 단위로 정확함)의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!