swpier.css 1.9 KB
@media screen and (min-device-width: 1366px), screen and (min-device-width: 1366px), screen and (min-device-width: 1366px), screen and (min-device-width: 1366px) {
  #arrow_right_height, #arrow_left_height {
    background-image: url(../images/ui_2x2761ce.png);
    background-size: 738.1% 284.0%;
    background-position: 0 97%;
  }
}

#pageControl {
  position: fixed;
  width: 198px;
  height: 10px;
  bottom: 5%;
  left: 50%;
  z-index: 1500;
  margin-left: -75px;
}
.pageControl {
  float: left;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: white;
  opacity: 0.4;
  margin-left: 20px;
  cursor: pointer;
  transition: all 0.3s;
}
.activeControl{
  opacity: 1;
  transform: scale(1.2, 1.2);
}
.pageControl:first-child {
  margin-left: 0;
}

#arrow_right {
  position: fixed;
  z-index: 1000;
  width: 2%;
  height: 12%;
  right: 2.5%;
  max-width: 33px;
  max-height: 64px;
  top: 50%;
  margin-top: -3.3%;
  cursor: pointer;
}
#arrow_right_height, #arrow_left_height {
  background-image: url(../images/ui_2x2761ce.png);
  background-size: 738.1% 284.0%;
  background-position: 0 97%;
  width: 100%;
  height: 100%;
}

#arrow_left {
  position: fixed;
  z-index: 1000;
  width: 2%;
  height: 12%;
  left: 2.5%;
  max-width: 33px;
  max-height: 64px;
  top: 50%;
  margin-top: -3.3%;
  cursor: pointer;
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

.animateBaseIn {
  -webkit-animation: animateBaseIn 0.6s;
  animation: animateBaseIn 0.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.animateBaseOut {
  -webkit-animation: animateBaseOut 0.4s;
  animation: animateBaseOut 0.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@keyframes animateBaseIn {
  0%{
    opacity: 0;
  }
  90%{
    opacity: 1;
  }
  100%{
    opacity: 1;
  }
}

@keyframes animateBaseOut {
  0%{
    opacity: 1;
  }
  90%{
    opacity: 0;
  }
  100%{
    opacity: 0;
  }
}