中文字幕在线观看,亚洲а∨天堂久久精品9966,亚洲成a人片在线观看你懂的,亚洲av成人片无码网站,亚洲国产精品无码久久久五月天

一個很好用的js倒計時

2018-07-20    來源:open-open

容器云強勢上線!快速搭建集群,上萬Linux鏡像隨意使用
一個很好用的js倒計時!網(wǎng)頁適時倒計時,精確到秒級,和天數(shù)倒計時原理一樣。js倒計時一般用于商城網(wǎng)站團購,特賣,很多地方都可用到
    <!DOCTYPE html>  
    <html>  
    <head>  
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  
        <style type="text/css">    
       .leave_time_font{margin-left:35%;}  
       #fo{margin-left:32%;}  
        </style>   
    <title>WoYaoNi.CN-倒計時</title>  
    </head>  
    <body>  
    <h1>WoYaoNi.CN    </h1>  
    <script src="./jquery.js"></script>  
    <script type="text/javascript">  
    $(document).ready(function(e) {  
    var _countSeconds = 0;  
     function _countDown(){  
      _countSeconds ++;  
      $('input.surplustime').each(function(index, element) {  
       var $this = $(this);  
       var _totalTime = Number($this.val()) - _countSeconds;  
       var _day = parseInt(_totalTime/86400);  
       var _hours = parseInt(_totalTime%86400/3600);  
       var _minutes = parseInt(_totalTime%86400%3600/60);  
       var _seconds = parseInt(_totalTime%86400%3600%60);  
       var _strLite = '<span class="day">'+_day+'</span>天<span class="hour">'+_hours+'</span>小時<span class="minutes">'+_minutes+'</span>分<span class="seconds">'+_seconds+'</span>秒';  
       var _str = '倒計時:'+_strLite;  
       if($this.next('p.daojishi').length > 0){  
        $this.next('p.daojishi').html(_str);  
       }else if($this.next('p.leave_time_font').length > 0){  
        $this.next('p.leave_time_font').html(_strLite);  
       }  
      });  
     }  
     setInterval(_countDown, 1000);  
    })  
    </script>  
    </head>  
    <body>  
    <?php  
    ini_set('date.timezone','Asia/Shanghai');  
    $currenttime = time();  
    $a = strtotime('2014-2-14 00:00');  
    $b = $a-$currenttime;  
    ?>  
      
    <div id="djs">  
    <div id="fo">小伙伴們距離情人節(jié)只剩:</div>  
    <input type="hidden" name="surplustime" class="surplustime" value="<?php echo $b; ?>" />  
     <p class="leave_time_font"><span class="day">0</span>天<span class="hour">0</span>小時<span class="minutes">0</span>分<span class="seconds">0</span>秒</p>  
    </div>  
    </body>   
    </html>  

標簽:

版權申明:本站文章部分自網(wǎng)絡,如有侵權,請聯(lián)系:west999com@outlook.com
特別注意:本站所有轉載文章言論不代表本站觀點!
本站所提供的圖片等素材,版權歸原作者所有,如需使用,請與原作者聯(lián)系。

上一篇:C# 計算文件MD5值

下一篇: 每天自動備份mysql腳本