swte

OwlCarousel Resize

Jun 27th, 2020
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. (function(){
  2. function resizeOwl(){
  3. jQuery('.owl-carousel').each(function(){
  4. var carousel = jQuery(this);
  5. var height = jQuery(this).find('.owl-item:first').height();
  6. if (carousel.height() != height){
  7. jQuery(this).css('height', height + 'px');
  8. }
  9. });
  10. requestAnimationFrame(resizeOwl);
  11. }
  12. document.addEventListener('load', function(){
  13. requestAnimationFrame(resizeOwl);
  14. });
  15. })();
Add Comment
Please, Sign In to add comment