div+css实现网页滚动卡片堆叠效果代码

代码语言:html

所属分类:加载滚动

代码描述:div+css实现网页滚动卡片堆叠效果代码

代码标签: div css 网页 滚动 卡片 堆叠

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

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

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

  
  
  
<style>
* { margin: 0; font: inherit }

body {
  background: #e3e2ff;
  text-align: center;
}




main {  
  --tilt-angle: 3deg;
  position: relative;
  display: grid;
  grid-template-rows: 1fr max-content;
  height: 100vh;
  width: 30rem;
  margin: auto;
  font-size: 2.4rem;
  top: 10vh;
}

.card {
  position: sticky;
  top: calc(var(--top) * 1px);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  background-color: white;
  border-radius: 0.5em;
  padding: 3em;
  margin-bottom: 2em;
  transform: rotate(calc(var(--tilt-angle) * (2 * (var(--r) - 0.5))));
  transition: * 0.3s ease;
}

.card.stuck {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* Add a box shadow effect */
  backgroun.........完整代码请登录后点击上方下载按钮下载查看

网友评论0