Home Forums WoodMart support forum Animation speed woodmart

Animation speed woodmart

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #308783

    srsergio
    Participant

    Hello, this time I would like to please help, I really liked the woodmart animation but my client wants the movement from left to right to be slower or to be activated when that section is displayed, is it possible to do this?

    Again, thank you very much

    #308957

    Bogdan Donovan
    Keymaster

    Hi,

    To change animation duration, you can use one of the following codes:

    1. To change, moving and opacity duration simultaneously, try to use the following custom code:

    .website-wrapper .wd-slide-from-left {
    	transition-duration: 1.4s;
    }
    
    .website-wrapper .wd-slide-from-left.animated {
    	animation-duration: 1.4s;
    }

    2. To change only moving duration, try to use the following custom code:

    .website-wrapper .wd-slide-from-left.animated {
    	animation-duration: 1.4s;
    }

    Default animation duration is 0.7 second. Value 1.4s will increase it in double. You can use your own value by modifying custom code.

    Kind Regards

Viewing 2 posts - 1 through 2 (of 2 total)