欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

jQuery如何實(shí)現(xiàn)百度登錄框的動(dòng)態(tài)切換效果

這篇文章主要介紹了jQuery如何實(shí)現(xiàn)百度登錄框的動(dòng)態(tài)切換效果,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

創(chuàng)新互聯(lián)-專(zhuān)業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性?xún)r(jià)比四川網(wǎng)站開(kāi)發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫(kù),直接使用。一站式四川網(wǎng)站制作公司更省心,省錢(qián),快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋四川地區(qū)。費(fèi)用合理售后完善,十年實(shí)體公司更值得信賴(lài)。

點(diǎn)擊右下角圖片進(jìn)行狀態(tài)切換,效果圖

jQuery如何實(shí)現(xiàn)百度登錄框的動(dòng)態(tài)切換效果

jQuery如何實(shí)現(xiàn)百度登錄框的動(dòng)態(tài)切換效果

<!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 h4 
    { 
      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> 
<!-- 賬號(hào)密碼登錄 --> 
  <div class="wrap"> 
    <div class="header"> 
      <h4>登錄百度賬號(hào)</h4> 
      <span id="close" title="關(guān)閉">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="手機(jī)/郵箱/賬號(hào)"> 
        <input type="password" class="inputDiv" placeholder="請(qǐng)輸入登錄密碼"> 
        <p class="inputDiv"> 
        <input type="checkbox" value="checked" checked="checked"><label for="">下次自動(dòng)登錄</label> 
        <a href="" class=" rel="external nofollow" rel="external nofollow" rel="external nofollow" pull-right" >登錄遇到問(wèn)題</a> 
        </p> 
        <input type="submit" value="登錄" class="inputDiv smBtn"> 
        <a href="" class=" rel="external nofollow" rel="external nofollow" rel="external nofollow" pull-right" >立即注冊(cè)</a> 
      </form> 
      <div class="other"> 
      <p>可以使用以下方式登錄</p> 
      <a href=""><img src=" rel="external nofollow" rel="external nofollow" images/qq.png" ></a> 
      <a href=""><img src=" rel="external nofollow" rel="external nofollow" images/wb.png" ></a> 
      </div> 
    </div> 
    <div class="toggleDiv1"> 
      <img src="images/small2wm.png" > 
      </div> 
    </div> 
    <!-- 二維碼登錄 --> 
<div class="choice2"> 
    <div class="weima"> 
    <p>手機(jī)掃描,安全登錄</p> 
    <img src="images/2weima.png" > 
    <p>請(qǐng)使用手機(jī)百度app掃描登錄</p> 
  </div> 
    <div class="toggleDiv2"> 
      <img src="images/cpt.png" > 
    </div> 
  </div> 
  </div> 
</body> 
<!-- 導(dǎo)入jquery文件 --> 
<script type="text/javascript" src="jquery-3.1.1.min.js"></script> 
<script> 
  $(document).ready(function(){ 
  /*這是一個(gè)自定義的函數(shù),作用是設(shè)置class1類(lèi)為隱藏,class2類(lèi)顯示*/ 
     function showDiv(class1,class2){ 
      $(class1).css("display","none"); 
      $(class2).css("display","block"); 
     } 
  /*給右下角的圖標(biāo)設(shè)置點(diǎn)擊事件*/ 
    $('.toggleDiv1').click(function(){ 
      showDiv(".choice1",".choice2"); 
    }) 
    $('.toggleDiv2').click(function(){ 
      showDiv(".choice2",".choice1"); 
    }) 
  /*給右上角的關(guān)閉按鈕設(shè)置點(diǎn)擊事件*/ 
    $("#close").click(function(){ 
      $(".wrap").css("display","none"); 
    }) 
  }) 
</script> 
</html>

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“jQuery如何實(shí)現(xiàn)百度登錄框的動(dòng)態(tài)切換效果”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!

網(wǎng)站標(biāo)題:jQuery如何實(shí)現(xiàn)百度登錄框的動(dòng)態(tài)切換效果
文章出自:http://aaarwkj.com/article38/jjhppp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供關(guān)鍵詞優(yōu)化、網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì)公司、營(yíng)銷(xiāo)型網(wǎng)站建設(shè)響應(yīng)式網(wǎng)站、服務(wù)器托管

廣告

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

外貿(mào)網(wǎng)站建設(shè)
亚洲欧美午夜激情啪啪视频| 亚洲国产女人精品久久久| 黄色录像一级二级三级| 亚洲精品一区二区三区中文字幕| 在线成人影院中文字幕| 亚洲综合久久五月天| 国产高清av免费在线观看| 人妻操人人妻中出av| 色综合一区二区日本韩国亚洲| 国产二区日韩成人精品| 91蜜臀在线视频播放| av男人的天堂一区二区| 天天精品国产av九九久久久| 成人欧美一区二区三区av| 国产一区二区不卡在线播放| 国产另类极品熟女露脸自拍| 久久精品国产亚洲av蜜点| 亚洲伦理国产一国产二| 免费观看日本成人午夜大片| 日日夜夜天天操天天干| 国产精品久久中文字幕网| 久久女婷五月综合色啪色老板| 蜜桃av在线观看一区二区| 亚洲av少妇一区二区成年男人 | 欧美一区日韩二区在线| 欧美色一区二区三区四区| 国产激情av网站在线观看| 国产丝袜美腿诱惑久久 | 情侣自拍偷拍亚洲天堂区| 精品国产一区二区三区性色av | 天天躁人人躁夜夜躁狠狠躁| 上海老熟女啪啪露脸高潮| 97国产一区二区精品久久呦| 国产乱国产乱老熟女视频| 欧美日韩国产福利在线观看| 亚洲一区二区精品欧美日韩| 一区三区精品久久久精品| 九九热最新视频免费看| 国产亚洲加勒比久久精品| 中文字幕在线五月婷婷| 人体蜜桃视频一区二区|