recherche

Maison  >  Questions et réponses  >  le corps du texte

Utilisation de l'effet de survol CSS de l'élément Psuedo pour chevaucher l'élément principal

En gros, lorsque je survole, je veux que l'effet ressemble à ceci :

Mon site internet est ici

Le code est le suivantIgnorez-le ! Important  :

.cta-button-menu, .cta-button-menu::before {
        transition:all 0.3s linear !important;
        width: 120px !important;
        height: 50px !important;
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    .cta-button-menu:hover {
        transform:rotateZ(-45deg) !important;
        background: #21B6CD !important;
        color: white !important;
    }   
    .cta-button-menu::before {
        content:"Book Now" !important;
        background-color:transparent !important;
        position:absolute !important;
        @include main-font($white, 16px !important, $font-bold !important);
      }
    .cta-button-menu:hover::before{
        transform: rotateZ(90deg) !important;
        background-color:#e72f54 !important;
        border:none !important;
    }

Pour une raison quelconque, je n'arrive pas à faire chevaucher le bouton bleu sur le bouton rouge. Je n'arrive pas à comprendre

P粉838563523P粉838563523302 Il y a quelques jours373

répondre à tous(1)je répondrai

  • P粉021708275

    P粉0217082752024-03-21 09:15:11

    Échangez les couleurs dans .cta-button-menu:hover set background: #e72f54.cta-button-menu:hover::before set background-color:#21B6CD. Et aussi changer le diplôme. J'espère que cela vous sera utile

    ul {
    margin-top: 60px;
    }
    .cta-button-menu,
        .cta-button-menu::before {
          transition: all 0.3s linear !important;
          width: 120px !important;
          height: 50px !important;
          display: inline-flex !important;
          justify-content: center !important;
          align-items: center !important;
        }
    
        .cta-button-menu:hover {
          transform: rotateZ(45deg) !important;
          background: #e72f54 !important;
          color: white !important;
    
        }
    
        .cta-button-menu::before {
          content: "Book Now" !important;
          background-color: transparent !important;
          position: absolute !important;
          @include main-font($white, 16px !important, $font-bold !important);
        }
    
        .cta-button-menu:hover::before {
          transform: rotateZ(-90deg) !important;
          background-color: #21B6CD !important;
          border: none !important;
    
        }

    répondre
    0
  • Annulerrépondre