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
  • mobile
  • download
  • css
  • index.css
Find file
BlameHistoryPermalink
  • libai's avatar
    测试 · 7011d88c
    libai committed 2 years ago
    7011d88c
index.css 1.24 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 70 71
.bg {
  width: 100vw;
  height: 100%;
  background: url(../images/bg.png?v=20220805) no-repeat;
  background-size: 100% 100%;
  position: relative;
}
.title {
  width: 9.78rem;
  position: absolute;
  left: 0.11rem;
  top: 1rem;
}
.bottom-bg {
  width: 10rem;
  height: 8.66rem;
  background: url(../images/bottom-bg.png) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  bottom: 1rem;
  left: 0;
  z-index: 5;
}
.video-bg {
  width: 9.73rem;
  height: 15.33rem;
  background: url(../images/video-bg.png) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 1.8rem;
  left: 0.135rem;
  z-index: 2;
}
.video-go {
  width: 7.5rem;
  height: 13rem;
  position: absolute;
  border-radius: 0.4rem;
  top: 2.9rem;
  left: 1.24rem;
  overflow: hidden;
}
.video {
  width: 7.5rem;
  height: 13.3rem;
  position: absolute;
  border-radius: 0.4rem;
}
.down {
  width: 6.77rem;
  height: 1.7rem;
  background: url(../images/down.png) no-repeat;
  background-size: 100% 100%;
  left: 1.615rem;
  bottom: 2rem;
  position: absolute;
  z-index: 50;
  transform: scale(1);
  animation: downShow 0.9s linear infinite;
}
@keyframes downShow {
  0% {
    transform: scale(1);
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}