91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

javascript+jQuery如何實現360開機時間顯示效果

發布時間:2021-06-24 14:48:19 來源:億速云 閱讀:128 作者:小新 欄目:web開發

小編給大家分享一下javascript+jQuery如何實現360開機時間顯示效果,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

實現效果:

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問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

焉耆| 龙江县| 安塞县| 南和县| 宝鸡市| 蓝田县| 科尔| 沁源县| 芦山县| 得荣县| 伊川县| 马鞍山市| 涟水县| 噶尔县| 长宁区| 陵水| 信丰县| 潼关县| 柘荣县| 通渭县| 颍上县| 连平县| 浪卡子县| 乐都县| 阳城县| 东乌珠穆沁旗| 松原市| 新巴尔虎右旗| 保靖县| 凯里市| 平江县| 乐至县| 襄樊市| 南康市| 寿阳县| 怀柔区| 湄潭县| 北碚区| 樟树市| 吉木萨尔县| 罗江县|