纯css绘制一对企鹅夫妇效果

代码语言:html

所属分类:布局界面

代码描述:纯css绘制一对企鹅夫妇效果

代码标签: 一对 企鹅 夫妇 效果

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

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">

<style>
body {
  background: #005aa7;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to bottom, #005aa7, #fffde4);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to bottom, #005aa7, #fffde4);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.flex, .outer-container, .outer-container .penguin-wrapper .penguin-back {
  display: flex;
  justify-content: center;
}

.eye-ball, .outer-container .penguin-wrapper .penguin-back .penguin-stomach-surface .penguin-face .eye-right::before, .outer-container .penguin-wrapper .penguin-back .penguin-stomach-surface .penguin-face .eye-left::before {
  content: '';
  position: absolute;
  z-index: 2;
  width: 35%;
  height: 35%;
  border-radius: 50%;
  background: #FFF;
  top: 4px;
  left: 2px;
}

.blush, .outer-container .girl .eye-left::after, .outer-container ..........完整代码请登录后点击上方下载按钮下载查看

网友评论0