这次给大家带来CSS与媒体查询实现网页导航功能(附代码),CSS与媒体查询实现网页导航功能的注意事项有哪些,下面就是实战案例,一起来看一下。
附上效果图,如果大家感觉不错,请参考实现代码:

代码如下,复制即可使用:
Document 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; } }
我在这,谁敢动我。
我是你们大哥的头
大哥的小弟一
大哥的小弟一
身高180
体重120
大哥的小弟二
大哥的小弟二
身高160
体重100
大哥的小弟三
大哥的小弟三
身高175
立即学习“前端免费学习笔记(深入)”;
体重180
大哥的小弟四
大哥的小弟四
身高180
体重110
大哥的小弟五
大哥的小弟五
身高180
体重150
相信看了本文案例你已经掌握了方法,更多精彩请关注创想鸟其它相关文章!
推荐阅读:
Node调试工具使用详解
webpack打包压缩js与css步骤详解
以上就是CSS与媒体查询实现网页导航功能(附代码)的详细内容,更多请关注创想鸟其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/1546128.html
微信扫一扫
支付宝扫一扫