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