卡片悬浮弹出标题及菜单效果
代码语言:html
所属分类:悬停
代码描述:卡片悬浮弹出标题及菜单效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link type="text/css" rel="stylesheet" href="http://repo.bfw.wiki/bfwrepo/css/all.min.css">
<style>
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: #e4e4e4;
}
.container {
display: grid;
grid-template-rows: repeat(2, 1fr);
grid-template-columns: repeat(2, 1fr);
grid-gap: 30px;
}
figure.card {
position: relative;
width: 380px;
height: 240px;
background-image: var(--image-src);
background-position: 50% 50%;
background-size: 125%;
transition: background 400ms ease;
box-shadow: 0 6.7px 5.3px rgba(0, 0, 0, 0.03), 0 22.3px 17.9px rgba(0, 0, 0, 0.05), 0 100px 80px rgba(0, 0, 0, 0.07);
overflow: hidden;
}
figure.card:hover figcaption {
transform: translateY(0px);
}
figure.card--1:hover {
background-position: 50% 100%;
}
figure.card--1 figcaption {
bottom: 0.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0