css实现群组协作团队成员图像布局效果代码

代码语言:html

所属分类:布局界面

代码描述:css实现群组协作团队成员图像布局效果代码,鼠标悬浮可显示团队成员全名。

代码标签: css 群组 协作 团队 成员 图像

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

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

<head>

  <meta charset="UTF-8">
  

  
  
  
<style>
:root {
  --color_01: #46244c;
  --color_02: #712b75;
  --color_03: #c74b50;
  --color_04: #d49b54;
  --color_05: #6ebf8b;
  --color_06: #5f7464;

  --color_01: #ff1818;
  --color_02: #ffc300;
  --color_03: #36ae7c;
  --color_04: #fa58b6;
  --color_05: #ff8d29;
  --color_06: #00b4d8;
}

.collabGroup {
  display: flex;
}
.collabGroup:nth-of-type(2) {
  transform: scale(1.5);
}
.avatar {
  position: relative;
  font-family: sans-serif;
  font-weight: bold;
  width: 36px;
  height: 36px;
  background: var(--color_01);
  color: white;
  box-sizing: border-box;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-right: -6px;
  outline: 0;
  outline-offset: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
.........完整代码请登录后点击上方下载按钮下载查看

网友评论0