Closed (outdated)
Project:
Quick Tabs
Version:
7.x-3.x-dev
Component:
Code
Priority:
Major
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
3 Aug 2011 at 13:14 UTC
Updated:
22 Dec 2024 at 21:53 UTC
Jump to comment: Most recent
Comments
Comment #1
gratefulsk commentedI managed to add a nice fade effect by simply changing the quicktabs.js file on line 43 from
This will unfortunately add a style="display:block" to every tab. So to override this in the quicktabs.css change
Comment #2
tinarey commentedAlso very interested in this.
This guy seems to be doing it without messing in the Quicktabs code: http://www.victheme.com/blog/drupal-quicktabs-sliding-custom-jquery
Would it be possible/make sense to write additional renderers for Quicktabs?
Comment #3
wooody commentedThanks for share the fade way , can anyone share Auto Tabs code.
Thanks
Comment #4
varshith commentedA simple fade transition without editing quicktabs code can be done using CSS3
.quicktabs-hide {
display: block;
opacity: 0 !important;
position: absolute;
top: -999999px;
}
.quicktabs-tabpage {
-webkit-transition:all 1s ease 0s;
-moz-transition:all 1s ease 0s;
-o-transition:all 1s ease 0s;
transition:all 1s ease 0s;
}
Comment #5
robgreeniowa#4 worked perfectly without any special config needed. Yay!
Comment #6
smustgrave commentedWith D7 EOL approaching in a month I'm starting to triage the D7 side of quicktabs queue.
If still an issue or needed for 4.0.x (latest branch) feel free to reopen