温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

CSS与媒体查询实现网页导航功能的方式

发布时间:2020-10-26 11:50:09 来源:亿速云 阅读:155 作者:小新 栏目:web开发

小编给大家分享一下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 h2,
        body > p:first-child h3 {
            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 > h3 {
            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 h3,
        article p h4 {
            margin: 0 0 1em 0;
        }
        article p p {
            width: 40vw;
        }
        @media (max-width: 900px) {
            p + p article {
                padding: 2vh 3vw;
            }
            p + p article > h3 {
                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 > h3 {
                opacity: 0;
            }
            article p p {
                width: 50vw;
            }
            article p {
                max-height: calc(72%);
                overflow-y: auto;
            }
        }
    </style>
</head>
<body>
    <p>
        <h2>我在这,谁敢动我。</h2>
        <h3>我是你们大哥的头</h3>
    </p>
    <p>
        <article>
            <h3>大哥的小弟一</h3>
            <p>
                <h4>大哥的小弟一</h4>
                <p>身高180</p>
                <p>体重120</p>
            </p>
         </article>
         <article>
           <h3>大哥的小弟二</h3>
            <p>
               <h4>大哥的小弟二</h4>
               <p>身高160</p>
               <p>体重100</p>
            </p>
          </article>
          <article>
             <h3>大哥的小弟三</h3>
             <p>
               <h4>大哥的小弟三</h4>
               <p>身高175</p>
               <p>体重180</p>
             </p>
          </article>
          <article>
             <h3>大哥的小弟四</h3>
             <p>
               <h4>大哥的小弟四</h4>
                 <p>身高180</p>
                 <p>体重110</p>
             </p>
          </article>
          <article>
             <h3>大哥的小弟五</h3>
             <p>
               <h4>大哥的小弟五</h4>
               <p>身高180</p>
               <p>体重150</p>
             </p>
          </article>
     </p>
  </body>
</html>

以上是CSS与媒体查询实现网页导航功能的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注亿速云行业资讯频道!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

css
AI