jQuery實現百度登入框的動態轉場效果,jquery切換

來源:互聯網
上載者:User

jQuery實現百度登入框的動態轉場效果,jquery切換

點擊右下角圖片進行狀態切換,

<!doctype html> <html lang="en"> <head>   <meta charset="UTF-8">   <title>百度登入框</title>   <style type="text/css">     *{margin: 0;padding: 0;}     body     {       font-size: 12px;     }     a     {       text-decoration: none;       color: #2647CB;     }     a:hover     {       text-decoration: underline;       color: red;     }     .wrap     {       width: 390px;       height: 450px;       margin: 50px auto;       border: 1px solid #8A8989;       position: relative;     }     .main     {       width: 350px;       height: 400px;       margin: 0 auto;     }     .header     {       width: 100%;       height: 50px;       line-height: 50px;       background-image: url(images/foot.png);       background-color: rgb(247,247,247);       background-repeat: no-repeat;     }     .header h3     {       display: inline-block;       line-height: 50px;       margin-left: 50px;     }     .header span     {       display: inline-block;       float: right;       margin: auto 15px;       font-size: 30px;     }     .inputDiv     {       display: block;       width: 350px;       height: 40px;       margin: 10px auto;     }     .phoneIn     {       display: inline-block;       float: right;       font-size: 14px;       background-image: url(images/phone.png);       background-repeat: no-repeat;       padding-left: 20px;       margin: 30px 0px 10px 0px;     }     .smBtn     {       background: #2066C5;       color: white;       font-size: 18px;       font-weight: bold;       height: 50px;       border-radius: 4px;     }     .smBtn:hover     {       background: #4067EE;     }     .pull-right     {       display: inline-block;       float: right;     }     .other     {       width: 350px;       padding-top: 50px;       margin: 0 auto;     }     .toggleDiv1,.toggleDiv2     {       position: absolute;       right: 0;       bottom: 0;       z-index: 1000;     }     .weima     {       text-align: center;       padding-top: 50px;       width: 390px;       height: 400px;     }     .weima p      {       line-height: 50px;     }     .choice2     {       display: none;     }     #close:hover     {       cursor: pointer;       color: blue;     }   </style> </head> <body> <!-- 帳號密碼登入 -->   <div class="wrap">     <div class="header">       <h3>登入百度帳號</h3>       <span id="close" title="關閉">X</span>     </div>     <div class="choice1">       <div class="main">       <a href="" class=" rel="external nofollow" rel="external nofollow" rel="external nofollow" phoneIn">簡訊快捷登入</a>       <form action="">         <input type="text" class="inputDiv" placeholder="手機/郵箱/帳號">         <input type="password" class="inputDiv" placeholder="請輸入登入密碼">         <p class="inputDiv">         <input type="checkbox" value="checked" checked="checked"><label for="">下次自動登入</label>         <a href="" class=" rel="external nofollow" rel="external nofollow" rel="external nofollow" pull-right" >登入遇到問題</a>         </p>         <input type="submit" value="登入" class="inputDiv smBtn">         <a href="" class=" rel="external nofollow" rel="external nofollow" rel="external nofollow" pull-right" >立即註冊</a>       </form>       <div class="other">       <p>可以使用以下方式登入</p>       <a href=""><img src=" rel="external nofollow" rel="external nofollow" images/qq.png" alt=""></a>       <a href=""><img src=" rel="external nofollow" rel="external nofollow" images/wb.png" alt=""></a>       </div>     </div>     <div class="toggleDiv1">       <img src="images/small2wm.png" alt="">       </div>     </div>     <!-- 二維碼登入 --> <div class="choice2">     <div class="weima">     <p>手機掃描,安全登入</p>     <img src="images/2weima.png" alt="">     <p>請使用手機百度app掃描登入</p>   </div>     <div class="toggleDiv2">       <img src="images/cpt.png" alt="">     </div>   </div>   </div> </body> <!-- 匯入jquery檔案 --> <script type="text/javascript" src="jquery-3.1.1.min.js"></script> <script>   $(document).ready(function(){   /*這是一個自訂的函數,作用是設定class1類為隱藏,class2類顯示*/      function showDiv(class1,class2){       $(class1).css("display","none");       $(class2).css("display","block");      }   /*給右下角的表徵圖設定點擊事件*/     $('.toggleDiv1').click(function(){       showDiv(".choice1",".choice2");     })     $('.toggleDiv2').click(function(){       showDiv(".choice2",".choice1");     })   /*給右上方的關閉按鈕設定點擊事件*/     $("#close").click(function(){       $(".wrap").css("display","none");     })   }) </script> </html> 

以上所述是小編給大家介紹的jQuery實現百度登入框的動態轉場效果,希望對大家有所協助,如果大家有任何疑問請給我留言,小編會及時回複大家的。在此也非常感謝大家對幫客之家網站的支援!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.