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

CSS3制作響應(yīng)式手風琴特效

這篇文章將為大家詳細講解有關(guān)CSS3制作響應(yīng)式手風琴特效的方法,文章內(nèi)容質(zhì)量較高,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

成都創(chuàng)新互聯(lián)是專業(yè)的婺城網(wǎng)站建設(shè)公司,婺城接單;提供網(wǎng)站制作、網(wǎng)站建設(shè),網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進行婺城網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!

CSS3制作響應(yīng)式手風琴特效

最終效果如下:

全屏?xí)r:

CSS3制作響應(yīng)式手風琴特效

屏幕寬度小于960px時:

CSS3制作響應(yīng)式手風琴特效

下面來看一下頁面的基本結(jié)構(gòu)(index.html):

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <link rel="stylesheet" href="style.css">
</head>
<body>
  <p class="container">
      <!--標題-->
    <header>
      <h2>Follow me on social media</h2>
    </header>
      
      <!--手風琴部分-->
    <ul class="accordion">
      <li class="tab">
        <p class="social youtube">
          <a href="#">YouTube</a>
        </p>
        <p class="content">
          <h2>YouTube</h2>
          <p>Lorem ipsum dolor sit amet consectetur 
            adipisicing elit.Culpa, consectetur.</p>
        </p>
      </li>
      <li class="tab">
        <p class="social facebook">
          <a href="#">Facebook</a>
        </p>
        <p class="content">
          <h2>Facebook</h2>
          <p>Lorem ipsum dolor sit amet consectetur 
            adipisicing elit.Culpa, consectetur.</p>
        </p>
      </li>
      <li class="tab">
        <p class="social twitter">
          <a href="#">Twitter</a>
        </p>
        <p class="content">
          <h2>Twitter</h2>
          <p>Lorem ipsum dolor sit amet consectetur 
            adipisicing elit.Culpa, consectetur.</p>
        </p>
      </li>
      <li class="tab">
        <p class="social instagram">
          <a href="#">Instagram</a>
        </p>
        <p class="content">
          <h2>Instagram</h2>
          <p>Lorem ipsum dolor sit amet consectetur 
            adipisicing elit.Culpa, consectetur.</p>
        </p>
      </li>
      <li class="tab">
        <p class="social linkedin">
          <a href="#">Linkedin</a>
        </p>
        <p class="content">
          <h2>Linkedin</h2>
          <p>Lorem ipsum dolor sit amet consectetur 
            adipisicing elit.Culpa, consectetur.</p>
        </p>
      </li>
       <li class="tab">
        <p class="social github">
          <a href="#">Github</a>
        </p>
        <p class="content">
          <h2>Github</h2>
          <p>Lorem ipsum dolor sit amet consectetur 
            adipisicing elit.Culpa, consectetur.</p>
        </p>
      </li>
    </ul>
  </p>
</body>
</html>

樣式(style.css):

*{
  margin: 0;
  padding: 0;
  border: none;
}

body{
  font-family: Arial, Helvetica, sans-serif;
  background-color: #222;
  color: #fff;
}

/*設(shè)置字體,因為后面的圖標需要用到*/
@font-face {
  font-family: 'Genericons';
  src: url('font/genericons-regular-webfont.woff') format('woff'),
  url('font/genericons-regular-webfont.eot') format('truetype');
}

/*設(shè)置外面容器的寬度*/
.container{
  width: 80%;
  margin: 20px auto;
}

header h2{
  font-size: 2rem;
  padding: 1rem;
  text-align: center;
}

/*注意這里font-size設(shè)置為0,不然會出現(xiàn)非常糟糕的畫面,我們后面再去單獨對需要現(xiàn)實的文本設(shè)置字體大小
,因為a鏈接不想讓它顯示內(nèi)容*/
.accordion{
  width: 100%;
  min-width: 800px;
  height: 200px;
  background-color: #333;
  list-style: none;
  display: block;
  overflow: hidden;
  font-size: 0;
}

/*對每一個li設(shè)置為inline-block,讓其排列在一行,溢出隱藏,因為.tab下面的.content寬度為360,而且.tab只有在hover的時候?qū)挾炔艜兂?50px,那時候.content剛好顯示.另外設(shè)置過渡,使其寬度增長的過程平緩*/
.tab{
  width: 80px;
  height: 100%;
  display: inline-block;
  position: relative;
  margin: 0;
  background-color: #444;
  border: 1px solid #333;
  overflow: hidden;
  transition: all .5s ease .1s;
}

.tab:hover{
  width: 450px;
}
.tab:hover .social a:after{
  transform: translateX(-80px);
}
.tab:hover .social a:before{
  transform: translateX(-100px);
}

/*設(shè)置定位為相對定位,不然.content會有部分內(nèi)容被遮住*/
.tab .content{
  position: relative;
  width: 360px;
  height: 100%;
  background-color: #fff;
  color: #333;
  margin-left: 80px;
  padding: 50px 0 0 15px;
}

.tab .content h2{
  font-size: 2.5rem;
  margin-top: 20px;
}
.tab .content p{
  font-size: .85rem;
  line-height: 1.6;
}

/設(shè)置為元素的寬高及字體為Genericons,不然圖標無法顯現(xiàn),只會顯示白色的空框框/
.social a:before,
.social a:after{
  position: absolute;
  width: 80px;
  height: 200px;
  display: block;
  text-indent: 0;
  padding-top: 90px;
  padding-left: 25px;
  font:normal 30px Genericons;
  color: #fff;
  transition: all .5s ease;
}

/*因為當我們hover上去的時候圖標會更大,所以after偽類的字體及padding要重新設(shè)置,同時
要將margin-left設(shè)置為80px,這要默認情況下顯示的就是before偽類的小圖標*/
.social a:after{
  font-size: 48px;
  padding-top: 80px;
  padding-left: 20px;
  margin-left: 80px;
}

/*Add icons*/
.youtube a:before,
.youtube a:after{
  content: '\f213';
}

.youtube a:after{
  background-color: #fc0000;
}

.twitter a:before,
.twitter a:after{
  content: '\f202';
}

.twitter a:after{
  background-color: #6dc5dd;
}

.facebook a:before,
.facebook a:after{
  content: '\f204';
}

.facebook a:after{
  background-color: #3b5998;
}

.linkedin a:before,
.linkedin a:after{
  content: '\f208';
}

.linkedin a:after{
  background-color: #00a9cd;
}

.instagram a:before,
.instagram a:after{
  content: '\f215';
}

.instagram a:after{
  background-color: #6dc993;
}

.github a:before,
.github a:after{
  content: '\f200';
}

.github a:after{
  background-color: #6e5494;
}

/*當屏幕最大寬度為960px時*/
@media(max-width:960px){
  .container{
    width: 70%;
  }
    /*讓高度為auto*/
  .accordion{
    min-width: 450px;
    height: auto;
  }

    /*讓li顯示為block,這樣就會依次往下排*/
  .tab{
    width: 100%;
    display: block;
    border-bottom: 1px solid #333;
  }
    /*這個一定要設(shè)置,因為原本的.tab:hover時寬度為450px,假如.tab的寬度有600px,在hover時就回剩余150px的空白,不是我們想要的效果*/
  .tab:hover{
    width: 100%;
  }
  .tab .content{
    width: 85%;
  }
    /*設(shè)置對應(yīng)偽類的padding值,使其大概顯示在中間*/
  .social a:before{
    padding-top: 60px;
    padding-left: 25px;
  }
  .social a:after{
    padding-top: 50px;
    padding-left: 20px;
  }
}

以上就是CSS3制作響應(yīng)式手風琴特效的方法,看完之后是否有所收獲呢?如果想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊,感謝各位的閱讀。

分享題目:CSS3制作響應(yīng)式手風琴特效
網(wǎng)頁鏈接:http://aaarwkj.com/article12/gjdsgc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信公眾號、定制網(wǎng)站網(wǎng)站設(shè)計公司、網(wǎng)站排名、建站公司網(wǎng)站建設(shè)

廣告

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

成都網(wǎng)站建設(shè)公司
日韩欧美中文字幕一区二区| av中文资源在线观看| 国产亚洲综合一区二区三区| 最新国产精品欧美激情| 精品人妻区二区三区蜜桃| 美国真人性做爰视频免费| av二区不卡国产精品| 成人黄性视频免费网看| 蜜臀视频网站在线观看| 亚洲精品视频久久免费| 国产黄片免费高清观看| 亚洲大片色一区在线观看| 日韩欧美亚洲制服丝袜| 国产日韩熟女中文字幕| 亚洲区自拍偷拍一区二区| 日韩精品不卡在线观看| 婷婷久久香蕉毛片毛片| 91在线视频麻豆国产| 国产尤物直播在线观看| 人妻系列少妇人妻偷人| 日韩欧美亚洲福利在线| 国产国产乱老熟视频网站| 成年女人毛片免费观看不卡| 亚洲国产日韩精品欧美| 99久久婷婷免费国产综合精品 | 国产av一区二区三区日韩接吻| 成年女人大片免费观看版| 色婷婷亚洲综合色一区二区| 日本欧美中文字幕一区| 放荡成熟人妻中文字幕| 色吊丝日韩在线观看| 亚洲精品91在线中文字幕| 久久精品国产一区二区三| 亚洲精品国产av一区| 久久国产福利一区二区| 色婷婷国产精品久久包臀| 久久免费欧美日韩亚洲| 色哟国产传媒视频在线观看| av一级免费在线观看| 高清高潮少妇一区二区三区| 亚洲精品中文字幕乱码|