div+css实现鼠标悬停卡片其他卡片模糊聚焦效果代码

代码语言:html

所属分类:悬停

代码描述:div+css实现鼠标悬停卡片其他卡片模糊聚焦效果代码

代码标签: div css 鼠标 悬停 卡片 其他 模糊 聚焦

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

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

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


<style>
body {
  font-family: sans-serif;
  margin: 0;
  background-color: #0C1524;
  color: #999;
  width: 100%;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
a {
  color: inherit;
}
.wrapper {
  display: flex;
  gap: 15px;
}
.wrapper .card {
  width: 150px;
  height: 150px;
  border-radius: 7px;
  .........完整代码请登录后点击上方下载按钮下载查看

网友评论0