css布局绘制3种图形代码

代码语言:html

所属分类:布局界面

代码描述:css布局绘制3种图形代码,包括发散方块、棋盘网格方块、8角星。

代码标签: css 布局 绘制 3种 图形 代码

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

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

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

  
  
  
<style>
@property --a {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg; 
}
@property --i {
  syntax: "<number>";
  inherits: false;
  initial-value: 0; 
}
@property --j {
  syntax: "<number>";
  inherits: false;
  initial-value: 1; 
}
.box {
  --t: 1turn; /* control the modulo (the smallest angle after which you get back to the same visual) */
  --d: .8s; /* the transition on mouse leave */
  
  width: 180px;
  aspect-ratio: 1;
  rotate: calc(mod(var(--a),var(--t)/2)*var(.........完整代码请登录后点击上方下载按钮下载查看

网友评论0