Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #464552

    Helo guys! how are you?

    i tried to find solution to my issue but i really don’t know how to do it.

    i would like different effect opening the mobiel menu like the example on the private area.

    is possible ?

    thanks a lot for your precious help!

    Have a nice day!

    Mario

    #465128

    Hi Mario!

    Mimicking that exact layout is not possible because the mobile menu is off canvas, however the following code will get you a similar effect, add this to Quick CSS:

    #mobile-advanced{
      right: 0;
      top: -100%;
      border-color: #242424;
      -webkit-transform:  scale(1);
      -moz-transform:   scale(1);
      -ms-transform:    scale(1);
      transform:      scale(1);
      -webkit-transition: all 0.3s ease;
      -moz-transition:  all 0.3s ease;
      transition:     all 0.3s ease;
      -webkit-transform-origin: 0% 0%;
      -moz-transform-origin: 0% 0%;
      -ms-transform-origin: 0% 0%;
      transform-origin: 0% 0%;
    }
    
    .avia_transform3d #mobile-advanced{
      -webkit-transform:  scale3d(1);
      -moz-transform:   scale3d(1);
      transform:      scale3d(1);
    }
    
    .show_mobile_menu #mobile-advanced{
      -webkit-transform:  scale(1);
      -moz-transform:   scale(1);
      -ms-transform:    scale(1);
      transform:      scale(1);
      -webkit-transform:  translate(0, 100%);
      -moz-transform:   translate(0, 100%);
      transform:      translate(0, 100%);
    }
    .avia_transform3d .show_mobile_menu #mobile-advanced{
      -webkit-transform:  scale3d(1);
      -moz-transform:   scale3d(1);
      transform:      scale3d(1);
      -webkit-transform:  translate3d(0, 100%, 0);
      -moz-transform:   translate3d(0, 100%, 0);
      transform:      translate3d(0, 100%, 0);
    }
    

    Cheers!
    Josue

    #578875

    Hi Josue! Quick question, how do you get this animation to slide out from the right instead of from the top?

    #578883

    Try this:

    #mobile-advanced{
    	-webkit-transform:   scale(1);
    	-moz-transform:      scale(1);
    	transform:           scale(1);
    	-webkit-transition:  all 0.1s linear;
    	-moz-transition:     all 0.1s linear;
    	transition:          all 0.1s linear;
    }
    .avia_transform3d #mobile-advanced{
    	-webkit-transform:   scale3d(1);
    	-moz-transform:      scale3d(1);
    	transform:           scale3d(1);
    }
    .show_mobile_menu #mobile-advanced{
    	-webkit-transform:   translate(-70%, 0);
    	-moz-transform:      translate(-70%, 0);
    	transform:           translate(-70%, 0);
    
    }
    .avia_transform3d .show_mobile_menu #mobile-advanced{
    	-webkit-transform:   translate3d(-70%, 0, 0);
    	-moz-transform:      translate3d(-70%, 0, 0);
    	transform:           translate3d(-70%, 0, 0);
    }

    Best regards,
    Josue

    #579137

    works great! thanks josue!

    #579245

    You are welcome, glad to help :)

    Regards,
    Josue

    #586433

    Thanks again!!

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Mobile menu different opening’ is closed to new replies.