• 
    

      <address id="upfr9"><pre id="upfr9"><strike id="upfr9"></strike></pre></address>
      1. <address id="upfr9"><tr id="upfr9"></tr></address><dl id="upfr9"></dl>

        如何實(shí)現(xiàn)圣誕節(jié)倒計(jì)時頁面特效-創(chuàng)新互聯(lián)

        這篇文章主要講解了“如何實(shí)現(xiàn)圣誕節(jié)倒計(jì)時頁面特效”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“如何實(shí)現(xiàn)圣誕節(jié)倒計(jì)時頁面特效”吧!

        專注于為中小企業(yè)提供網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)庫倫免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了上千企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。

        一起看下效果圖:

        如何實(shí)現(xiàn)圣誕節(jié)倒計(jì)時頁面特效

        實(shí)現(xiàn)的代碼。

        html代碼:

        代碼如下:

        <h2>
               Merry Christmas</h2>
           <ul>
               <li>
                   <div class="door">
                       1</div>
               </li>
               <li>
                   <div class="door">
                       2</div>
               </li>
               <li>
                   <div class="door">
                       3</div>
               </li>
               <li>
                   <div class="door">
                       4</div>
               </li>
               <li>
                   <div class="door">
                       5</div>
               </li>
               <li>
                   <div class="door">
                       6</div>
               </li>
               <li>
                   <div class="door">
                       7</div>
               </li>
               <li>
                   <div class="door">
                       8</div>
               </li>
               <li>
                   <div class="door">
                       9</div>
               </li>
               <li>
                   <div class="door">
                       10</div>
               </li>
               <li>
                   <div class="door">
                       11</div>
               </li>
               <li>
                   <div class="door">
                       12</div>
               </li>
               <li>
                   <div class="door">
                       13</div>
               </li>
               <li>
                   <div class="door">
                       14</div>
               </li>
               <li>
                   <div class="door">
                       15</div>
               </li>
               <li>
                   <div class="door">
                       16</div>
               </li>
               <li>
                   <div class="door">
                       17</div>
               </li>
               <li>
                   <div class="door">
                       18</div>
               </li>
               <li>
                   <div class="door">
                       19</div>
               </li>
               <li>
                   <div class="door">
                       20</div>
               </li>
               <li>
                   <div class="door">
                       21</div>
               </li>
               <li>
                   <div class="door">
                       22</div>
               </li>
               <li>
                   <div class="door">
                       23</div>
               </li>
               <li>
                   <div class="door">
                       24</div>
               </li>
               <li>
                   <div class="door">
                       25</div>
               </li>
           </ul>
           <p id="message">
           </p>


        css代碼:

        代碼如下:


        body {
         background: url("xmas.jpg");
         color: #fff;
         font-family: 'Oleo Script', cursive;
         padding: 20px;
         font-weight: 400;
        }
        h2 {
         margin:0;
         font-size:75px;
         line-height: 75px;
         text-align: center;
         font-weight: 400;
        }
        ul {
         margin:0 auto 30px auto;
         padding:0;
         list-style-type:none;
         max-width:900px;
         width: 100%;
         text-align: center;
         user-select: none;
        }
        li {
         font-weight: 400;
         background-color: #fff;
         box-sizing: border-box;
         border-radius: 6px;
         display: inline-block;
         color:#111;
         cursor:pointer;
         font-size: 26px;
         padding:15px;
         margin:25px 12px;
         width: 130px;
         height:130px;
         line-height: 100px;
         text-align:center;
         position: relative;
         vertical-align:top;
         user-select: none;
         perspective: 800px;
         transition: all 0.4s ease-in-out;
        }
        ul li:last-child {
         background-size:cover;  
         display:block;
         clear:both;
         margin: 20px auto 0 auto;
         width: 200px;
         height: 275px;
        }
        ul li:last-child .door {
         font-size: 100px;
         width: 200px;
         height: 275px;
         line-height: 240px;
        }
        ul li:last-child .revealed {
         line-height: 123px;
        }
        .door {
         user-select: none;
         color:#fff;
         font-size: 70px;
         position: absolute;
         top:0;
         left:0;
         background-color: #91c1cc;
         box-sizing: border-box;
         border-top: 2px #eee dashed;
         border-right: 2px #eee dashed;
         border-bottom: 2px #eee dashed;
         border-left: 1px #eee solid;
         border-radius: 6px;
         padding:15px;
         width: 130px;
         height:130px;
         transform-origin: 0 40%;
         transition: all 0.4s ease-in-out;
         transform-style: preserve-3d;
        }
        .current .door {
         background-color: #7EAD44;
        }
        .current .door.open{
         color: #7EAD44;
        }
        .revealed {
         user-select: none;
        }
        #message {
         box-sizing: border-box;
         color: #222;
         display: none;
         font-size: 24px;
         padding: 20px;
         background: #eddecb;
         max-width: 500px;
         width: 100%;
         border-radius: 15px;
         margin: 0 auto;
        }
        .open {
         box-shadow: 14px 0px 15px -1px rgba(0,0,0,0.2);
         color: #91c1cc;
         transform: rotate3d(0, 1, 0, -98deg);
        }
        .jiggle {
         animation: jiggle 0.2s infinite;
         transform: rotate(-1deg);
        }
        @keyframes jiggle {
         0% {
               transform: rotate(-1deg);
         }
         50% {
             transform: rotate(1deg);
         }
        }
        @media screen and (min-width: 480px) {
         li {
           margin:25px 20px;
         }
        }</p> <p>@media screen and (min-width: 768px) {
           body {
               background-size:150px;
           }
           p {
               right: 6%;
               top: 20%;
               bottom: auto;
               margin-left: auto;
               left: auto;
           }
        }


        js代碼:

        代碼如下:


        $(document).ready(function () {
                 var words = [
             'Lorem ',
             'ipsum ',
             'delor',
             'sit',
             'amet',
             'consect',
             'adipisci',
             'elit,',
             'sed.',
             'Eiusmod',
             'tempor',
             'a',
             'enim',
             'minim',
             'season',
             'nulla',
             'dolore',
             'sint',
             'id',
             'est',
             'laboris',
             'ut.',
             'aute',
             'laborum',
             'toe'
         ];
                 var message = '';
                 var date = new Date();
                 var day = date.getDate();
                 var month = date.getMonth() + 1;
                 var scrolled = false;
                 var timeDelay = 200;
                 var cardReveal = function () {
                     $('#message').text(message).show();
                 };
                 if (month === 12) {
                     $('li').each(function (index) {
                         var adventwindow = index + 1;
                         var item = $(this);
                         if (day !== adventwindow && adventwindow < day) {
                             window.setTimeout(function () {
                                 item.children('.door').addClass('open');
                             }, timeDelay);
                         }
                         timeDelay += 100;
                         if (adventwindow <= day) {
                             var word = words[index];
                             $(this).append('<div class="revealed">' + word + '</div>');
                             message = message + ' ' + word;
                         }
                         if (adventwindow === day) {
                             $(this).addClass('current');
                             $(this).addClass('jiggle');
                         }
                         $(this).on('click', function () {
                             if (adventwindow <= day) {
                                 $(this).children('.door').toggleClass('open');
                             }
                             $(this).removeClass('jiggle');
                             if (day >= 25 && adventwindow === 25) {
                                 messageReveal();
                                 if (!scrolled) {
                                     $('html, body').animate({ scrollTop: $('#message').offset().top }, 2000);
                                     scrolled = true;
                                 }
                             }
                         });
                     });
                     if (day >= 26) {
                         messageReveal();
                     }
                 }
             });


        感謝各位的閱讀,以上就是“如何實(shí)現(xiàn)圣誕節(jié)倒計(jì)時頁面特效”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對如何實(shí)現(xiàn)圣誕節(jié)倒計(jì)時頁面特效這一問題有了更深刻的體會,具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司,,小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!

        網(wǎng)站欄目:如何實(shí)現(xiàn)圣誕節(jié)倒計(jì)時頁面特效-創(chuàng)新互聯(lián)
        當(dāng)前網(wǎng)址:http://www.jbt999.com/article48/shphp.html

        成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站設(shè)計(jì)、App開發(fā)、靜態(tài)網(wǎng)站關(guān)鍵詞優(yōu)化、營銷型網(wǎng)站建設(shè)移動網(wǎng)站建設(shè)

        廣告

        聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:[email protected]。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

        成都定制網(wǎng)站建設(shè)

      2. 
        

          <address id="upfr9"><pre id="upfr9"><strike id="upfr9"></strike></pre></address>
          1. <address id="upfr9"><tr id="upfr9"></tr></address><dl id="upfr9"></dl>
            豆花视频一区 | www.人人操 | 黄片免费看视频 | 国内精品久久久久久久久久98 | 91干逼电影 | 一区二区三区四区久久久 | 日韩无码一二三 | 色影音先锋色资源网站 | 日韩精品A片一区二区三区+卡 | 穿着皮靴被c到高潮的网站 |