123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- :host {
- display: block;
- }
- ion-content {
- --background: transparent;
- position: relative;
- height: 100vh;
- }
- .top-image {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 80%;
- overflow: hidden;
- z-index: 0;
-
- }
- .top-image img {
- width: 100%;
- height: 100%;
- object-fit: fill;
- clip-path: ellipse(140% 130% at 50% -30%);
- }
- .ripple {
- position: absolute;
- border-radius: 50%;
- background-color: rgba(255, 255, 255, 0.6);
- transform: scale(0);
- animation: rippleEffect 0.6s ease-out;
- }
- @keyframes rippleEffect {
- to {
- transform: scale(3);
- opacity: 0;
- }
- }
- .button-container {
- position: absolute;
- bottom: 15%;
- z-index: 2;
- }
- .left-button {
- left: 30px;
- }
- .right-button {
- right: 30px;
- }
- .button-container img {
- width: 60px;
- height: 60px;
- display: block;
- }
- .circular-button {
- width: 60px;
- height: 60px;
- border-radius: 50%;
- object-fit: cover;
- transform: scale(1.5);
- transform-origin: center;
- transition: transform 0.3s ease;
- }
- .circular-button:hover {
- transform: scale(1.6);
- }
-
-
-
-
|