mirror of
https://github.com/Mayccoll/Gogh.git
synced 2023-08-10 21:12:46 +03:00
24 lines
877 B
JavaScript
24 lines
877 B
JavaScript
$(document).ready(function() {
|
|
var containerEl = document.querySelector(".cd-gallery");
|
|
var mixer = mixitup(containerEl, {
|
|
animation: {
|
|
easing: "cubic-bezier(0.645, 0.045, 0.355, 1)"
|
|
}
|
|
});
|
|
});
|
|
|
|
|
|
$('.filter a').click(function (e) {
|
|
e.preventDefault();
|
|
$('a').removeClass('selected');
|
|
$(this).addClass('selected');
|
|
});
|
|
|
|
/**
|
|
* ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
|
|
* ······· Copy
|
|
* ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
|
|
*/
|
|
|
|
new ClipboardJS('.btn-copy');
|