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;
}

/* 按钮的颜色、大小、文字大小颜色 */
.box button {
  padding: 20px 50px;
  background-color: rgb(240, 240, 240);
  border: 4px solid rgba(0, 0, 0, 0.8);
  font-size: 3em;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.8);
  letter-spacing: 10px;
  cursor: pointer;
  /* 底部按钮大阴影 */
  box-shadow: -100px 150px 100px rgba(0, 0, 0, 0.2);

  position: relative;

  /* 倾斜效果 */
  transform: skew(30deg);
  /* 过渡动画时间 */
  transition: all 0.35s;
}
/* 按钮左边竖着的面 */
.box button::before {
  content: "";

  width: 50px;
  height: 100%;
  /* 颜色和上面一致 */
  background-color: rgb(240, 240, 240);
  border: 4px solid rgba(0, 0, 0, 0.8);
  /* 为了边框重叠更好看,去掉某一边框线 */
  border-right: 0;

  /* 定位根据实际位置调 */
  position: absolute;
  left: -58px;
  top: 23px;

  /* 倾斜到合适角度,看起来合适就行 */
  transform: skewY(-45deg);
  /* 过渡动画时间 */
  transition: all 0.35s;
}
/* 按钮下边横着的面 */
.box butto.........完整代码请登录后点击上方下载按钮下载查看

网友评论0