六月婷婷综合激情-六月婷婷综合-六月婷婷在线观看-六月婷婷在线-亚洲黄色在线网站-亚洲黄色在线观看网站

明輝手游網中心:是一個免費提供流行視頻軟件教程、在線學習分享的學習平臺!

CSS與媒體查詢完成頁面導航技巧(附代碼)

[摘要]這次給大家帶來CSS與媒體查詢實現網頁導航功能(附代碼),CSS與媒體查詢實現網頁導航功能的注意事項有哪些,下面就是實戰案例,一起來看一下。附上效果圖,如果大家感覺不錯,請參考實現代碼: 代碼如下,復制即可使用:<!DOCTYPE html><html lang="en...
這次給大家帶來CSS與媒體查詢實現網頁導航功能(附代碼),CSS與媒體查詢實現網頁導航功能的注意事項有哪些,下面就是實戰案例,一起來看一下。

附上效果圖,如果大家感覺不錯,請參考實現代碼:

CSS與媒體查詢實現網頁導航功能(附代碼)

代碼如下,復制即可使用:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        body {
            background: #801638;
        }
        body,
        body > * {
            margin: 0;
            padding: 0;
            font-family: 'Roboto', sans-serif;
            font-weight: normal;
        }
        * {
            transition: all .3s ease 0s;
        }
        /* Background colours */
        p + p article:nth-child(1) {
            background: #c22326;
        }
        p + p article:nth-child(2) {
            background: #f37338;
        }
        p + p article:nth-child(3) {
            background: #fdb632;
        }
        p + p article:nth-child(4) {
            background: #027878;
        }
        p + p article:nth-child(5),
        p + p {
            background: #801638;
        }
        /* Main layout */
        html,
        body,
        p + p {
            width: 100vw;
            height: 100vh;
        }
        p + p {
            list-style: none;
            position: relative;
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            align-items: stretch;
            overflow: hidden;
        }
        /* Articles */
        p + p article {
            flex: initial;
            width: 20%;
            height: 100%;
            text-align: center;
            color: #fff;
            text-decoration: none;
            vertical-align: bottom;
            box-sizing: border-box;
            padding: 2vh 1vw;
            position: relative;
        }
        /* Big Headings */
        body > p:first-child {
            position: fixed;
            bottom: 8vh;
            background: #fff;
            width: 100%;
            text-align: center;
            padding: .5rem;
            z-index: 2;
        }
        body > p:first-child h1,
        body > p:first-child h2 {
            margin: 0;
            padding: 0;
        }
        /* Hover interaction */
        p + p:hover article {
            flex: initial;
            width: 10%;
        }
        p + p article:hover {
            width: 60%;
        }
        article > p {
            opacity: 0;
            transition: opacity .2s ease 0;
        }
        p + p article:hover > p {
            opacity: 1;
            transition: opacity .3s ease .3s;
        }
        /* navigation */
        p + p article > h2 {
            bottom: 2vh;
            position: absolute;
            text-align: center;
            width: 100%;
            margin: 0;
            font-size: 3vh;
        }
        /* Article layouts */
        article p {
            text-align: left;
            width: 58vw;
        }
        article p p,
        article p p h2,
        article p h3 {
            margin: 0 0 1em 0;
        }
        article p p {
            width: 40vw;
        }
        @media (max-width: 900px) {
            p + p article {
                padding: 2vh 3vw;
            }
            p + p article > h2 {
                transform: rotate(90deg);
                bottom: 23vh;
                min-width: 12em;
                text-align: left;
                transform: rotate(-90deg);
                transform-origin: 0 0 0;
                opacity: 1;
            }
            p + p article:hover > h2 {
                opacity: 0;
            }
            article p p {
                width: 50vw;
            }
            article p {
                max-height: calc(72%);
                overflow-y: auto;
            }
        }
    </style>
</head>
<body>
    <p>
        <h1>我在這,誰敢動我。</h1>
        <h2>我是你們大哥的頭</h2>
    </p>
    <p>
        <article>
            <h2>大哥的小弟一</h2>
            <p>
                <h3>大哥的小弟一</h3>
                <p>身高180</p>
                <p>體重120</p>
            </p>
         </article>
         <article>
           <h2>大哥的小弟二</h2>
            <p>
               <h3>大哥的小弟二</h3>
               <p>身高160</p>
               <p>體重100</p>
            </p>
          </article>
          <article>
             <h2>大哥的小弟三</h2>
             <p>
               <h3>大哥的小弟三</h3>
               <p>身高175</p>
               <p>體重180</p>
             </p>
          </article>
          <article>
             <h2>大哥的小弟四</h2>
             <p>
               <h3>大哥的小弟四</h3>
                 <p>身高180</p>
                 <p>體重110</p>
             </p>
          </article>
          <article>
             <h2>大哥的小弟五</h2>
             <p>
               <h3>大哥的小弟五</h3>
               <p>身高180</p>
               <p>體重150</p>
             </p>
          </article>
     </p>
  </body>
</html>

相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!

推薦閱讀:

Node調試工具使用詳解

webpack打包壓縮js與css步驟詳解

以上就是CSS與媒體查詢實現網頁導航功能(附代碼)的詳細內容,更多請關注php中文網其它相關文章!


網站建設是一個廣義的術語,涵蓋了許多不同的技能和學科中所使用的生產和維護的網站。




主站蜘蛛池模板: 最新国产视频 | 天美蜜桃精东乌鸦果冻麻豆 | 素人约啪| 日韩一区二三区国产好的精华液 | 青青在线免费观看 | 亚洲欧美成人完整版在线 | 日韩精品一区二区三区毛片 | 天天躁夜夜躁狠狠躁躁88 | 日本黄网站高清色大全 | 日本无卡码免费一区二区三区 | 午夜久久福利 | 亚洲成aⅴ人片在线观 | 四虎www成人影院观看 | 青青草一区国产97 | 日韩在线aⅴ免费视频 | 欧美亚洲人成网站在线观看刚交 | 偷自视频视频区免费 | 欧美无人区码卡二卡3卡4免费 | 日韩中文字幕在线观看视频 | 中文字幕不卡免费高清视频 | 天堂福利视频 | 婷婷亚洲天堂 | 亚洲国产艾杏在线观看 | 视频二区 素人 欧美 日韩 | 日本免费专区 | 欧美在线小视频 | 性夜黄a爽影免费看 | 日本一本二本视频 | 中文字幕在线视频第一页 | 日日摸夜夜添夜夜添一区二区 | 日韩在线视频线视频免费网站 | 亚欧aⅴ天堂在线 | 午夜视频在线观看免费观看在线观看 | 四虎永久免费在线观看 | 日韩免费高清一级毛片在线 | 亚洲色欧美 | 性生活视频欧美 | 亚洲最大成人综合网 | 亚洲综合网在线观看 | 中文字幕乱偷乱码亚洲 | 青草视频在线免费观看 |