Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save zexeder/168b571e4e500aa82920d2dba352f4f9 to your computer and use it in GitHub Desktop.
Save zexeder/168b571e4e500aa82920d2dba352f4f9 to your computer and use it in GitHub Desktop.
Slick slider в magnific popup
$('.open-popup-link-2').attr("data-effect","mfp-move-horizontal").magnificPopup({
type:'inline',
removalDelay: 500, //delay removal by X to allow out-animation
callbacks: {
beforeOpen: function() {
this.st.mainClass = this.st.el.attr('data-effect');
}
},
midClick: true,
callbacks: {open: initSliders}
});
function initSliders() {
$('.single-item').slick();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment