16:42 20/02/2024

This commit is contained in:
2024-02-20 16:12:12 +07:00
parent 07d9184608
commit c0338763a7
19 changed files with 4048 additions and 1 deletions

18
assets/js/main-mb.js Normal file
View File

@@ -0,0 +1,18 @@
click_footer()
clickFillter()
function click_footer() {
$(".content-main-footer .item-footer .title").click(function () {
$(this).parents(".show-footer").toggleClass("active");
});
}
function clickFillter() {
$(".item-filter").each(function () {
var nutClick = $(this).find(".title-filter");
$(nutClick).click(function () {
$(this).parent().toggleClass("hidden");
})
})
}