|
效果展示
完整源码
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="content-type" content="text/html; charset=utf-8">
- <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
- <title>悬停翻转的导航栏</title>
- <link href="https://cdn.bootcdn.net/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
- <style>
- *{
- /* 初始化 */
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- body{
- /* 100%窗口高度 */
- min-height: 100vh;
- /* 弹性布局 水平+垂直居中 */
- display: flex;
- justify-content: center;
- align-items: center;
- background-color: #f11c1c;
- }
- .container{
- /* 弹性布局 允许换行 水平居中 */
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- }
- .box{
- width: 350px;
- margin: 10px;
- text-align: center;
- /* 相对定位 */
- position: relative;
- /* 开启3D效果 */
- transform-style: preserve-3d;
- /* 设置视距 */
- perspective: 3000px;
- }
- .box .front{
- background-color: rgb(13, 125, 253);
- width: 100%;
- height: 220px;
- /* 弹性布局 垂直排列 垂直居中 */
- display: flex;
- flex-direction: column;
- justify-content: center;
- /* 阴影 */
- box-shadow: 0 5px 20px rgba(0,0,0,0.1);
- /* 设置过渡 */
- transition: 0.5s ease;
- }
- .box .front .icon{
- height: 80px;
- }
- .box .front .icon i,
- .box .front span{
- /* 渐变背景 */
- background: linear-gradient(220deg,#02dbb0,#007adf);
- /* 以区块内的文字作为裁剪区域向外裁剪,文字的背景即为区块的背景,文字之外的区域都将被裁剪掉 */
- -webkit-background-clip: text;
- /* 将文字透明镂空 */
- -webkit-text-fill-color: transparent;
- }
- .box .front .icon i{
- font-size: 65px;
- font-weight: 900;
- }
- .box .front span,
- .box .back span{
- font-size: 22px;
- font-weight: 600;
- /* 大写 */
- text-transform: uppercase;
- }
- .box .back{
- /* 绝对定位 */
- position: absolute;
- top: 0;
- left: 0;
- z-index: 1;
- width: 100%;
- height: 220px;
- background: linear-gradient(220deg,#02dbb0,#007adf);
- padding: 30px;
- color: #fff;
- /* 默认不透明度为0 */
- opacity: 0;
- /* 默认位置下移并沿Y轴旋转-90度 */
- transform: translateY(110px) rotateX(-90deg);
- /* 设置过渡 */
- transition: 0.5s ease;
- }
- .box .back p{
- margin-top: 12px;
- /* 文本两端对齐 */
- text-align: justify;
- line-height: 23px;
- }
- /* 鼠标移入卡片,两个面做出相应的变化 */
- .box:hover .front{
- opacity: 0;
- transform: translateY(-110px) rotateX(90deg);
- }
- .box:hover .back{
- opacity: 1;
- transform: translateY(0) rotateX(0);
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="box">
- <div class="front">
- <div class="icon">
- <i class="fa fa-apple" aria-hidden="true"></i>
- </div>
- <span>apple</span>
- </div>
- <div class="back">
- <span>apple</span>
- <p>苹果公司(Apple Inc. )是美国一家高科技公司。由史蒂夫·乔布斯、斯蒂夫·盖瑞·沃兹尼亚克和罗纳德·杰拉尔德·韦恩(Ron Wayne)等人于1976年4月1日创立。</p>
- </div>
- </div>
- <div class="box">
- <div class="front">
- <div class="icon">
- <i class="fa fa-google" aria-hidden="true"></i>
- </div>
- <span>google</span>
- </div>
- <div class="back">
- <span>google</span>
- <p>谷歌公司(Google Inc.)成立于1998年9月4日,由拉里·佩奇和谢尔盖·布林共同创建,被公认为全球最大的搜索引擎公司。</p>
- </div>
- </div>
- <div class="box">
- <div class="front">
- <div class="icon">
- <i class="fa fa-windows" aria-hidden="true"></i>
- </div>
- <span>microsoft</span>
- </div>
- <div class="back">
- <span>microsoft</span>
- <p>微软(Microsoft)是一家美国跨国科技企业,由比尔·盖茨和保罗·艾伦于1975年4月4日创立。公司总部设立在华盛顿州雷德蒙德(Redmond,邻近西雅图)。</p>
- </div>
- </div>
- </div>
- </body>
- </html>
复制代码 |
|