Quote:
Originally Posted by smirkley
Gotit !
replace javascript in xml with this
Code:
<script type="text/javascript">
$(document).ready(function(){
$(".cmsfcs_{vb:raw id}").tabs({ fx: {opacity: 'toggle', duration:'slow'} }).tabs({event: 'mouseover'}).tabs('rotate', 3000, true);
$('.cmsfcs_{vb:raw id}').mouseover(function(){
$(this).tabs('rotate', 0, false);
});
$('.cmsfcs_{vb:raw id}').mouseout(function(){
$(this).tabs({ fx: {opacity: 'none', duration:'slow'} }).tabs({event: 'mouseover'}).tabs('rotate', 3000);
$(".cmsfcs_{vb:raw id}").tabs({ fx: {opacity: 'toggle', duration:'slow'} }).tabs({event: 'mouseover'}).tabs('rotate', 3000, true);
});
});
</script>
edit - added fix for mouseout fade
|
i remove fadeout because slider lags if someone goes from one thumb to last thumb.. yes if u r not using thumb then fade out is ok..
But if u r using thumb then i would suggest not to use fadeout.