You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Can I change or disable the animation on image transitions?
115
+
116
+
By default, baguetteBox.js shows a slide-in animation on image transitions. You can change it to the following filter to `'fadeIn'`:
117
+
```
118
+
add_filter( 'baguettebox_animation', function () { return 'fadeIn'; } );
119
+
```
120
+
Or disable the animation completely with `'false'`:
121
+
```
122
+
add_filter( 'baguettebox_animation', function () { return 'false'; } );
123
+
```
124
+
114
125
## Screenshots
115
126
116
127
1. Simple, modern and minimalistic Lightbox for your Gallery Block<br>
0 commit comments