3D立体卡片动效(附源码)

3D立体卡片动效

效果展示


思路分析

需求含有立体 这种关键词,我们第一反应是采用动画中的平移倾斜 等实现。如果是立体 ,必然产生阴影,应用的处理采用滤镜处理。

页面布局

html 复制代码
<div class="container">
	<div class="card">
		<div class="img_box">
			<img class="avatar" src="./img/1.jpg" alt="">
			<h3 class="name">卫庄</h3>
		</div>
		<div class="content">
			<p>韩国人,鬼谷派横剑术传人,现任"鬼谷先生,""剑圣"盖聂的师弟。"流沙"组织的创立者之一,曾任韩国大将军,韩国灭亡后统领"流沙"暗中对抗秦国和罗网组织,在他的经营下,流沙成为了令天下人闻风丧胆的职业刺客团。</p>
		</div>
	</div>
	<div class="card">此处省略相同布局</div>
	<div class="card">此处省略相同布局</div>
</div>

1. 基础样式

css 复制代码
* {
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #f3f3f3;
  overflow: hidden;
}

.container{
  position: relative;
  width: 1050px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  .card {
    position: relative;
    width: 300px;
    height: 400px;
    background: #fff;
    transition: 0.5s;
    .img_box {
      position: relative;
      width: 300px;
      height: 200px;
      background-color: #00c7ff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;

      .name {
        position: relative;
        color: #ffffff;
        margin-top: 10px;
      }

      .avatar {
        max-width: 100px;
      }
    }

    .content {
      box-sizing: border-box;
      position: relative;
      width: 100%;
      height: 200px;
      padding: 20px;
      color: #777;
      background: #ffffff;

      .desc{
        text-indent: 2rem;
        font-size: 15px;
        line-height: 24px;
      }
    }
  }
}

2. 实现3D效果

2.1 顶面布局

css 复制代码
card::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
  background-color: #00c0f6;
  transform-origin: bottom;
  transform: skewX(45deg);
  transition: 0.5s;
}

特别注意

  • 为了实现 3D效果 ,我们可以采用 伪元素 的方式。
  • card::before 用于制作卡片的 顶部切面
  • transform-origin: bottom; 用于改变元素的 基点位置
  • transform: skewX(45deg); 用于定义沿着 X 轴的 2D 倾斜转换;
  • 其中 top值height值 要结合倾斜角度计算,或者通过控制台手动微调;

2.2 侧面布局

css 复制代码
card::after {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 15px;
  height: 50%;
  background-color: #00c0f6;
  transform-origin: left;
  transform: skewY(45deg);
  transition: 0.5s;
  border-bottom: 200px solid #d9d9d9;
}

特别注意

  • 同上
  • 思考:height:50%; 是怎么计算出来的;

组合效果


3. 阴影效果

css 复制代码
.content::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 400px;
  background: linear-gradient(transparent, transparent, rgba(0, 0, 0, 0.1));
  transform-origin: bottom;
  transform: skewX(45deg);
  transition: 0.5s;
  pointer-events: none;
  z-index: -1;
}

4. 鼠标移入效果

css 复制代码
.card:hover {
  transform: translateY(-40px);

  .content {
    &::before {
      transform: translateY(40px) skewX(45deg);
      filter: blur(5px);
      opacity: 0.5;
    }
  }
}

5. 细节补充

css 复制代码
.card:nth-child(1) {
  z-index: 3;
}

.card:nth-child(2) {
  z-index: 2;
}

.card:nth-child(3) {
  z-index: 1;
}

此处,处理定义的 层级问题 ,是为了处理 阴影的遮挡问题


温馨提示

  • 更多博文,请关注:xssy5431 小拾岁月,回复 "3D" ,获取源码;
相关推荐
寒雒4 分钟前
【Python】实战:实现GUI登录界面
开发语言·前端·python
独上归州11 分钟前
Vue与React的Suspense组件对比
前端·vue.js·react.js·suspense
战族狼魂16 分钟前
html+js实现图片的放大缩小等比缩放翻转,自动播放切换,顺逆时针旋转
javascript·css·html
Komorebi⁼18 分钟前
Vue核心特性解析(内含实践项目:设置购物车)
前端·javascript·vue.js·html·html5
明月清风徐徐19 分钟前
Vue实训---0-完成Vue开发环境的搭建
前端·javascript·vue.js
daopuyun22 分钟前
LoadRunner小贴士|开发Web-HTTP/HTML协议HTML5相关视频应用测试脚本的方法
前端·http·html
李先静25 分钟前
AWTK-WEB 快速入门(1) - C 语言应用程序
c语言·开发语言·前端
MR·Feng34 分钟前
使用Electron将vue2项目打包为桌面exe安装包
前端·javascript·electron
萧大侠jdeps1 小时前
图片生成视频-右进
前端·javascript·音视频
Domain-zhuo1 小时前
JS对于数组去重都有哪些方法?
开发语言·前端·javascript