css布局实现一个卡通鱼效果代码

代码语言:html

所属分类:布局界面

代码描述:css布局实现一个卡通鱼效果代码

代码标签: 一个 卡通 效果

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


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

<head>

  <meta charset="UTF-8">

  
  
  
  
<style>
body {
  display: flex;
  height: 100vh;
  margin: 0;
  justify-content: center;
  place-items: center;
  background: #3C8BD0;
}

.face {
  height: 300px;
  width: 290px;
  border-radius: 50%;
  background: #46A3F3;
  box-shadow: inset 14px 0 #367fbf, inset -14px 0 #367fbf;
  position: relative;
}

.eye {
  position: absolute;
  height: 160px;
  width: 150px;
  background: #FEFCFF;
  border-radius: 50%;
  top: 44px;
  box-shadow: inset 7px 0 #367fbf, inset -7px 0 #367fbf, inset 0 2px #367fbf, inset 0 -2px #367fbf;
.........完整代码请登录后点击上方下载按钮下载查看

网友评论0