Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #212807

    Hi there,
    is it possible to add animation while opening tabs?
    thanks

    #213510

    Hey!

    Try adding this code to the Quick CSS:

    .tab_content {
        opacity: 0;
        -webkit-transition: opacity 0.3s linear;
        -moz-transition: opacity 0.3s linear;
        transition: opacity 0.3s linear;
    }
    .tab_content.active_tab_content {
        opacity: 1;
    }

    Cheers! 
    Josue

    #215333

    It works, thank you!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Tab animation’ is closed to new replies.