-
AuthorPosts
-
April 11, 2016 at 2:46 pm #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,
SadeghApril 11, 2016 at 3:05 pm #611345Hi 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!
YigitApril 11, 2016 at 3:51 pm #611382Hi 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,
SadeghApril 11, 2016 at 4:11 pm #611401Hi!
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,
YigitApril 11, 2016 at 4:42 pm #611440Hey,
Thank you Yigit.
I used the code and obviously it got better than what it was before :)Kind regards,
SadeghApril 11, 2016 at 4:45 pm #611444 -
AuthorPosts
- The topic ‘tabs move automatically’ is closed to new replies.