css网格布局黄金比例示例代码

代码语言:html

所属分类:布局界面

代码描述:css网格布局黄金比例示例代码

代码标签: css 网格 布局 黄金 比例 示例 代码

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

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

<head>
  <meta charset="UTF-8">

  
  
  
<style>
ol {
  all: unset;
  display: grid;
  grid-template-columns: repeat(34, 1fr);
  grid-template-rows: repeat(21, 1fr);
  list-style: none;

  li {
    aspect-ratio: 1 / 1;
    background: var(--bg);
    grid-area: var(--ga);
    overflow: hidden;
    position: relative;

    &::after {
      aspect-ratio: 1 / 1;
      background-color: rgba(255, 255, 255, .3);
      border-radius: 50%;
      content: '';
      display: block;
      inset: 0;
      position: absolute;
      scale: 2;
      translate: var(--tl);
    }

    &:nth-of-type(1) {
      --bg: #e47a2c;
      --ga: 1 / 1 / 22 / 22;
      --tl: 50% 50%;
    }
    &:nth-of-type(2) {
      --bg: #baccc0 ;
      --ga: 1 / 22 / 23 / 35;
      --tl: -50% 50%;
    }
    &:nth-of-type(3) {
      --bg: #6c958f;
  .........完整代码请登录后点击上方下载按钮下载查看

网友评论0