div+css实现悬浮按钮点击弹出圆圈图片效果代码

代码语言:html

所属分类:菜单导航

代码描述:div+css实现悬浮按钮点击弹出圆圈图片效果代码

代码标签: div css 悬浮 按钮 点击 弹出 圆圈 图片

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

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

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

  
  
  
<style>
.gallery {
  --s: 130px; /* control the size of the images*/
  
  display: grid;
  gap: 5px;
  position: relative;
}
.gallery input {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  inset: calc(50% - var(--s)/3);
  cursor: pointer;
  --g: linear-gradient(#fff 0 0) no-repeat;
  background: var(--g) 50%/60% 3px,var(--g) 50%/3px 60%,#222;
  transition: 1.5s;
  -webkit-appearanc.........完整代码请登录后点击上方下载按钮下载查看

网友评论0