div+css实现文字立体折断效果代码

代码语言:html

所属分类:布局界面

代码描述:div+css实现文字立体折断效果代码

代码标签: div css 文字 立体 折断

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="zh-CN">

<head>

  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">

<style>
    * {
  /* 常规初始化 */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* 解决手机浏览器点击有选框的问题 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  /* 常规居中显示、背景颜色 */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;

  min-height: 100vh;
  background-color: #111;
}

.box {
  position: relative;

  /* 文字整体倾斜一点 */
  transform: skewY(15deg);
  /* 动画时间 */
  transition: 0.5s;
}
/* 鼠标放上去还原倾斜角度 */
.box:hover {
  transform: skewY(0);
}

.box span {
  /* 字体盒子宽高 */
  width: 800px;
  height: 250px;
  /* 字体颜色、大小、粗细、居中、行高 */
  color: #fff;
  font-size: 12em;
  font-weight: bold;
  text-align: center;
  line-height: 250px;

  /* 文字重叠、定位居中 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  /* 动画时间 */
  transition: 0.5s;
}
.box span:nth-child(1) {
  /* 裁剪显示区域 */
  /* 第一段文字显示区域 0% - 45% */
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}
.box span:nth-child.........完整代码请登录后点击上方下载按钮下载查看

网友评论0