div+css实现图片卡片列表鼠标悬停显示磨砂文字效果代码

代码语言:html

所属分类:悬停

代码描述:div+css实现图片卡片列表鼠标悬停显示磨砂文字效果代码果代码

代码标签: div css 图片 卡片 列表 鼠标 悬停 显示 磨砂 文字

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

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

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

  <meta name="viewport" content="width=device-width, initial-scale=1">
  
  
  
<style>
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nosifer&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #111;
  transition: 0.5s;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body:has(.box[data-color=clr1]:hover) {
  background: #1f3729;
}

body:has(.box[data-color=clr2]:hover) {
  background: #301a15;
}

body:has(.box[data-color=clr3]:hover) {
  background: #1b2a32;
}

section.........完整代码请登录后点击上方下载按钮下载查看

网友评论0