diff --git a/culture.html b/culture.html index 66306db..4f9b947 100644 --- a/culture.html +++ b/culture.html @@ -120,14 +120,6 @@ - -
- 全部活动 - 旅行 - 运动 - 聚餐 - 节日 -
@@ -249,21 +241,6 @@ }, {threshold: 0.1}); $('.culture-card').each(function(){ observer.observe(this); }); - // 筛选功能 - $('.filter-tabs .tab').on('click', function(){ - var filter = $(this).data('filter'); - $('.filter-tabs .tab').removeClass('active'); - $(this).addClass('active'); - $('.culture-card').each(function(){ - var cat = $(this).data('category'); - if(filter === 'all' || cat === filter){ - $(this).removeClass('hidden').addClass('visible'); - } else { - $(this).addClass('hidden').removeClass('visible'); - } - }); - }); - // 3D 倾斜效果 $('.culture-card').on('mousemove', function(e){ var rect = this.getBoundingClientRect();