Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Micah Wood

    (@woodent)

    You can replace this code:

    next.hide().css({ 'z-index': 100 });
    current.css({ 'z-index': 99 });
    next.fadeIn( 1200, 'swing', function() {
    	  current.hide();
    } );

    With this code:

    current.fadeOut('fast', function(){
    	next.fadeIn('fast');
    });

    at the end of the js file.

    I had a lot of people complain about the old transition, but you are the first to say anything about the new one. In a future release I intend to make it easier to customize the transitions.

    Thread Starter Vigorous Hive

    (@vihv)

    Thank you very much

    Hello,

    I’m would like to know if I can make the slides… slide.

    In other words, I would like the transitions to not fade in and out, but to slide off to the side while the other one slides in.

    Please let me know if this is possible.

    Thanks for the plug!

    Plugin Author Micah Wood

    (@woodent)

    @banks305,

    Currently that requires knowledge of jQuery and is a feature that will be in a future version. I don’t want to provide any code I haven’t tested and once I have it working to my taste, I will actually release the new transition in the next version.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘New "smooth transition" is really ugly’ is closed to new replies.