javascript+jQuery 360 부팅 시간 표시 효과 구현

구현 효과:

실현 원리:
닫 기 단 추 를 누 르 면 이벤트 바 인 딩 을 하고 누 르 면 애니메이션 효 과 를 촉발 합 니 다.jQuery 의 animate 방법 을 이용 하여 날 씨 를 표시 하 는 상자 의 높이 를 0 으로 바 꾸 고 날씨 와 사건 을 포함 하 는 상자 의 폭 을 0 으로 바 꾸 고 마지막 으로 display 속성 치 를 none 으로 설정 하여 close 단 추 를 사라 지게 합 니 다.
구현 코드:

<!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>
<div class="box">
 <span id="close">X</span>
 <div class="hd" id="t">1 12 </div>
 <div class="bd" id="b">  :  </div>
</div>
<!--   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>
총결산
위 에서 말 한 것 은 소 편 이 소개 한 javascript+jQuery 가 360 부팅 시간 표시 효 과 를 실현 하 는 것 입 니 다.여러분 에 게 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 메 시 지 를 남 겨 주세요.소 편 은 제때에 답 해 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기