| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- .A5Mobile {
- position: relative;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- z-index: 99999;
- width: 100%;
- height: 100%;
- transition: all 0.5s;
- background: url('./image/bg.png') no-repeat center center;
- background-size: 100% 100%;
- opacity: 0;
- @keyframes fadeIn {
- 0% {
- opacity: 0;
- }
- 100% {
- opacity: 1;
- }
- }
- animation: fadeIn 1s ease-in-out 0.1s forwards;
- > div {
- position: absolute;
- top: 50%;
- left: 50%;
- img {
- object-fit: contain;
- width: 100%;
- height: 100%;
- }
- }
- :global {
- .title {
- top: 10%;
- transform: translateX(-50%);
- width: 80%;
- opacity: 0;
- animation: fadeIn 1s ease-in-out 1.3s forwards;
- }
- .logo {
- opacity: 0;
- animation: fadeInRight 2s ease-in-out 2s forwards;
- top: 20px;
- left: 46px;
- width: 37%;
- }
- .pic1 {
- top: 27%;
- transform: translateX(-50%);
- width: 26%;
- opacity: 0;
- animation: fadeIn 1s ease-in-out 2s forwards;
- }
- .info {
- top: 42%;
- transform: translateX(-50%);
- width: 80%;
- opacity: 0;
- animation: fadeIn 1.3s ease-in-out forwards 2.3s;
- }
- .add {
- top: auto;
- bottom: 20px;
- left: 11%;
- width: 80%;
- opacity: 0;
- animation: backInRight 2s ease-in-out 2.5s forwards;
- }
- .button {
- cursor: pointer;
- top: auto;
- bottom: 60px;
- left: 50%;
- transform: translateX(-50%);
- width: 85px;
- & > img {
- opacity: 0;
- animation: fadeIn 3s ease-in-out 2s forwards;
- }
- }
- }
- }
|