Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

libai / footseen-large-website

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • footseen-large-website
  • mTest
  • download
  • css
  • index.css
Find file
BlameHistoryPermalink
  • libai's avatar
    测试 · 8d81f484
    libai committed 2 years ago
    8d81f484
index.css 1.21 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
.bg {
  width: 100vw;
  height: 100%;
  background: url(../images/video.png?v=2022081201) no-repeat;
  background-size: 100% auto;
  position: relative;
}
.video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100vw;
}
.shadow {
  width: 100vw;
  height: 100%;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  background: url(../images/bg.png?v=2022081201) no-repeat;
  background-size: 100% 100%;
}
.banner {
  width: 9.78rem;
  height: 11.86rem;
  background: url(../images/banner.png?v=2022081201) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  left: 0.11rem;
  left: 50%;
  margin-left: -4.89rem;
  z-index: 5;
  top: 0.5rem;
}
.shadow1 {
  width: 100vw;
  height: 6.5rem;
  position: absolute;
  top: 0;
  z-index: 2;
  backdrop-filter: blur(5px);
}
.down {
  width: 6.77rem;
  height: 1.7rem;
  background: url(../images/down.png?v=2022081201) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  z-index: 5;
  left: 50%;
  margin-left: -3.385rem;
  top: 13rem;
  transform: scale(1);
  animation: downShow 0.9s linear infinite;
}
@keyframes downShow {
  0% {
    transform: scale(1);
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}