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 부팅 시간 표시 효 과 를 실현 하 는 것 입 니 다.여러분 에 게 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 메 시 지 를 남 겨 주세요.소 편 은 제때에 답 해 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[2022.04.19] 자바스크립트 this - 생성자 함수와 이벤트리스너에서의 this18일에 this에 대해 공부하면서 적었던 일반적인 함수나 객체에서의 this가 아닌 오늘은 이벤트리스너와 생성자 함수 안에서의 this를 살펴보기로 했다. new 키워드를 붙여 함수를 생성자로 사용할 때 this는...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.