div+css布局实现卡片式图片轮播手机Ui交互效果代码
代码语言:html
所属分类:布局界面
代码描述:div+css布局实现卡片式图片轮播手机Ui交互效果代码
代码标签: div css 布局 卡片式 图片 轮播 手机 Ui 交互
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/all.6.4.0.css">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #f0f0f0;
font-family: sans-serif;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 3em;
}
ul {
list-style: none;
padding: 0;
margin: 0;
}
.profile-card {
position: relative;
width: 18em;
background: #fff;
box-shadow: 0 0 5em rgba(0, 0, 0, 0.2);
padding: 2em 1em;
overflow: hidden;
border-radius: 0.7em;
}
.profile-card .profile-img {
position: absolute;
top: 5em;
left: 50%;
transform: translatex(-50%);
width: 11em;
aspect-ratio: 2/3;
object-fit: cover;
border-radius: 1rem;
z-index: 1;
transition: 0.5s ease-in-out;
}
.profile-card h1 {
font-size: 1.5rem;
}
.profile-card p {
margin: 0.2em 0;
color: #b8b8b8;
}
.profile-card h2 {
margin-top: 16em;
margin-bottom: 0.8em;
font-size: 1.2rem;
}
.profile-card .popular + .popular {
margin-top: 1em;
}
.profile-card .popular {
position: relative;
cursor: pointer;
z-index: 0;
}
.profile-card .popular:before {
position: absolute;
content: "";
inset: 0;
background: rgba(0, 0, 0, 0.3);
width: 100%;
height: 100%;
z-index: 1;
border-radius: 0.6rem;
}
.profile-card .popular img {
width: 100%;
position: relative;
height: 4rem;
object-fit: cover;
border-radius: 0.6rem;
display: block;
top: 0;
transition: 0.5s ease-in-out;
}
.profile-card .popular .content {
position: absolute;
inset: 0;
z-index: 2;
padding: 1em;
display: flex;
flex-direction: column;
justify-content: center;
}
.profile-card .popular .content h3 {
font-size: 0.9rem;
color: #fff;
text-align: center;
}
.profile-card .popular .content p {
color: #fff;
font-size: 0.8rem;
text-align: center;
line-height: 1.4;
height: 0;
overflow: hidden;
-moz-animation-delay: 3.5s;
-webkit-animation-delay: 3.5s;
-o-animation-delay: .........完整代码请登录后点击上方下载按钮下载查看
















网友评论0