gsap实现多张图片相册堆叠入场动画效果代码

代码语言:html

所属分类:画廊相册

代码描述:gsap实现多张图片相册堆叠入场动画效果代码

代码标签: gsap 多张 图片 相册 堆叠 入场 动画

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

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

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

  
  
<style>
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

:root {
  --gap: 85px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100vw;
  height: 100vh;
  background-color: #eeeced;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
}

.card {
  position: absolute;
  width: 200px;
  aspec.........完整代码请登录后点击上方下载按钮下载查看

网友评论0