Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author marsian

    (@marsian)

    that will be a little tedious work as it uses css animation step wise.

    Thread Starter opacons

    (@opacons)

    Be that as it may. Can you still tell me how to remove the bounce?

    Theme Author marsian

    (@marsian)

    there is a file named trans-slider.css in CSS folder.

    there you will see css code like

    @-moz-keyframes toRightAnim4{
    	0%{ left: 60%;  opacity: 1; }
    	30%{ left: 55%;  opacity: 1; }
    	100%{ left: 100%; opacity: 0; }
    }

    you need to remove the middle keyframe if there is any keyframe in-between 0% and 100%.

    the above behaves like
    keyframe 0% starts from 60%
    keyframe 30% moves backward to 55%
    keyframe 100% moves forward to 100%

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Remove the bounce in slider’ is closed to new replies.