新增第94个小实例:悬停翻转的3D卡片

This commit is contained in:
DESKTOP-BM6RJU5\wyanh 2022-01-10 00:10:09 +08:00
parent 3d2691de3d
commit 61b3a79e80
3 changed files with 157 additions and 1 deletions

View File

@ -97,4 +97,5 @@
90. HTML5+CSS3小实例超时空背景的登录界面
91. HTML5+CSS3小实例旋转的炫光心形loading动画
92. HTML5+CSS3小实例全屏搜索栏
93. HTML5+CSS3小实例四色小球的loading动画
93. HTML5+CSS3小实例四色小球的loading动画
94. HTML5+CSS3小实例悬停翻转的3D卡片

101
css/94.css Normal file
View File

@ -0,0 +1,101 @@
*{
/* 初始化 */
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
/* 100%窗口高度 */
min-height: 100vh;
/* 弹性布局 水平+垂直居中 */
display: flex;
justify-content: center;
align-items: center;
background-color: #f4f4f4;
}
.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: #fff;
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);
}

54
html/94.html Normal file
View File

@ -0,0 +1,54 @@
<!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>悬停翻转的3D卡片</title>
<link href="https://cdn.bootcdn.net/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="../css/94.css">
</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>