Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #611332

    Hi Kriesi team,

    Is there any way that tabs in tabs section starts to move automatically from first tab to the last one?

    Regards,
    Sadegh

    #611345

    Hi Sadegh!

    Can you please elaborate on the changes you would like to make?
    If you would like to make them kind of like a slider, that is unfortunately currently not easily possible. However, you can request such feature here – https://kriesi.at/support/enfold-feature-requests :)

    Cheers!
    Yigit

    #611382

    Hi Yigit,

    Sure, as you might remember, after I created tabs line with your kind help in first page of my website (+), I have shown that to some clients.
    Actually, most of them didn’t get they could navigate through those tabs :D
    .

    That is why I was thinking about something like auto sliding for tabs to let visitors finds about it; which seems not easily possible :)

    Kind regards,
    Sadegh

    #611401

    Hi!

    Yes, it is currently not possible :)
    I have added following code to the top of Quick CSS field

    @-ms-keyframes wiggle{
    0%{
    -ms-transform:rotate(3deg);
    }
    50%{
    -ms-transform:rotate(-3deg);
    }
    100%{
    -ms-transform:rotate(3deg);
    }
    }
    @-moz-keyframes wiggle{
    0%{
    -moz-transform:rotate(3deg);
    }
    50%{
    -moz-transform:rotate(-3deg);
    }
    100%{
    -moz-transform:rotate(3deg);
    }
    }
    @-webkit-keyframes wiggle{
    0%{
    -webkit-transform:rotate(3deg);
    }
    50%{
    -webkit-transform:rotate(-3deg);
    }
    100%{
    -webkit-transform:rotate(3deg);
    }
    }
    @keyframes wiggle{
    0{
    transform:rotate(3deg);
    }
    50%{
    transform:rotate(-3deg);
    }
    100%{
    transform:rotate(3deg);
    }
    }
    .my-custom-tabs .tab {
    -ms-animation:wiggle .3s 50;
    -moz-animation:wiggle .3s 50;
    -webkit-animation:wiggle .3s 50;
    animation:wiggle .3s 50;}
    .my-custom-tabs .tab.active_tab {
    -ms-animation:none;
    -moz-animation:none;
    -webkit-animation:none;
    animation:none;
    }
    

    It will wiggle tabs that are not active 50 times to kind of attract attention. Please check it and remove the code if you would not like to use it :)

    Best regards,
    Yigit

    #611440

    Hey,

    Thank you Yigit.
    I used the code and obviously it got better than what it was before :)

    Kind regards,
    Sadegh

    #611444

    Hey!

    Great :)
    You are welcome Sadegh. Let us know if you have any other questions or issues

    Regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘tabs move automatically’ is closed to new replies.