|
|
@@ -38,6 +38,22 @@
|
|
|
width: utils.vw-calc(324);
|
|
|
height: utils.vw-calc(57);
|
|
|
cursor: pointer;
|
|
|
+
|
|
|
+ img {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ }
|
|
|
+ &::after {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ left: 50%;
|
|
|
+ bottom: utils.vw-calc(-63);
|
|
|
+ width: utils.vw-calc(54);
|
|
|
+ height: utils.vw-calc(84);
|
|
|
+ transform: translateX(-50%);
|
|
|
+ background: url('./images/pointer.png') no-repeat center / contain;
|
|
|
+ animation: breath-opacity 4s ease-in-out infinite, breath-scale 4s ease-in-out infinite;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@@ -71,5 +87,40 @@
|
|
|
height: utils.vw-calc(57);
|
|
|
transform: translateX(-50%);
|
|
|
cursor: pointer;
|
|
|
+
|
|
|
+ img {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ }
|
|
|
+ &::after {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ left: utils.vw-calc(144);
|
|
|
+ bottom: utils.vw-calc(-61);
|
|
|
+ width: utils.vw-calc(54);
|
|
|
+ height: utils.vw-calc(84);
|
|
|
+ background: url('./images/pointer.png') no-repeat center / contain;
|
|
|
+ animation: breath-opacity 4s ease-in-out infinite, breath-scale 4s ease-in-out infinite;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+@keyframes breath-opacity {
|
|
|
+ 0%,
|
|
|
+ 100% {
|
|
|
+ opacity: 0.5;
|
|
|
+ }
|
|
|
+ 50% {
|
|
|
+ opacity: 1;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+@keyframes breath-scale {
|
|
|
+ 0%,
|
|
|
+ 100% {
|
|
|
+ transform: scale(0.9);
|
|
|
+ }
|
|
|
+ 50% {
|
|
|
+ transform: scale(1.1);
|
|
|
}
|
|
|
}
|