一个div布局实现ghost鬼效果代码

代码语言:html

所属分类:布局界面

代码描述:一个div布局实现ghost鬼效果代码

代码标签: 实现 ghost 效果

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


<!DOCTYPE html>
<html lang="en" >

<head>

  <meta charset="UTF-8">

  
<style>
*, *:after, *:before {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  background-color: #eee;
}

.ghost {
  height: 124px;
  width: 104px;
  background-color: #FFF;
  border-radius: 99em 99em 0 0;
  box-shadow: inset -10px 0 0 0 #DDD;
  border-top: 4px solid #000;
  border-left: 4px solid #000;
  border-right: 4px solid #000;
  position: relative;
}
.ghost:before {
  content: "";
  display: block;
  position: absolute;
  width: 24px;
  height: 32px;
 .........完整代码请登录后点击上方下载按钮下载查看

网友评论0