2020-03-06 07:29:02 +03:00
|
|
|
$(document).ready(function() {
|
|
|
|
var containerEl = document.querySelector(".cd-gallery");
|
|
|
|
var mixer = mixitup(containerEl, {
|
|
|
|
animation: {
|
|
|
|
easing: "cubic-bezier(0.645, 0.045, 0.355, 1)"
|
2017-05-19 20:42:56 +03:00
|
|
|
}
|
2020-03-06 07:29:02 +03:00
|
|
|
});
|
|
|
|
});
|
2017-05-19 20:42:56 +03:00
|
|
|
|
2020-03-06 07:29:02 +03:00
|
|
|
|
|
|
|
$('.filter a').click(function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
$('a').removeClass('selected');
|
|
|
|
$(this).addClass('selected');
|
2017-05-19 20:42:56 +03:00
|
|
|
});
|
2020-03-06 07:29:02 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
|
|
|
|
* ······· Copy
|
|
|
|
* ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
|
|
|
|
*/
|
|
|
|
|
|
|
|
new ClipboardJS('.btn-copy');
|