صفحه اصلی/دسته بندی موضوعی - فراغیب
Esfandiari (بحث | مشارکتها) بدون خلاصۀ ویرایش |
Esfandiari (بحث | مشارکتها) بدون خلاصۀ ویرایش |
||
| خط ۱: | خط ۱: | ||
<html> | <html> | ||
< | |||
<!-- بخش | <div class="mediawiki-category-container" style="direction: rtl; font-family: tahoma, arial; max-width: 1000px; margin: 20px auto; padding: 15px; background: #f9f9f9; border-radius: 18px; box-shadow: 0 8px 24px rgba(42, 128, 85, .14); border: 1px solid #c9e4d5;"> | ||
<!-- بخش جستجو --> | |||
<div class="search-box" style="margin-bottom: 15px; text-align: center;"> | |||
<input type="text" id="categorySearch" placeholder="جستجو در دستهبندیها..." | |||
style="width: 90%; padding: 8px 15px; border: 1px solid #c9e4d5; border-radius: 20px; outline: none; font-size: 13px; transition: all 0.3s ease;"> | |||
</div> | |||
<!-- بخش فیلترها --> | |||
<div class="filter-bar" style="display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 15px;"> | |||
<button class="filter-btn active" onclick="filterSelection(event, 'all')" style="padding: 4px 12px; border-radius: 12px; border: none; background: #16bd78; color: white; cursor: pointer; font-size: 12px;">همه</button> | |||
<button class="filter-btn" onclick="filterSelection(event, 'tech')" style="padding: 4px 12px; border-radius: 12px; border: none; background: #eee; cursor: pointer; font-size: 12px;">تکنولوژی</button> | |||
<button class="filter-btn" onclick="filterSelection(event, 'art')" style="padding: 4px 12px; border-radius: 12px; border: none; background: #eee; cursor: pointer; font-size: 12px;">هنر</button> | |||
<button class="filter-btn" onclick="filterSelection(event, 'science')" style="padding: 4px 12px; border-radius: 12px; border: none; background: #eee; cursor: pointer; font-size: 12px;">علوم</button> | |||
</div> | |||
<!-- شبکه کارتها --> | |||
<div id="categoryGrid" class="category-grid"> | |||
<!-- کارت نمونه 1 --> | |||
<div class="category-card tech" style="background: white; padding: 8px; border-radius: 10px; text-align: center; box-shadow: 0 2px 5px rgba(0,0,0,0.05); border-bottom: 3px solid #16bd78;"> | |||
<span class="card-title" style="font-weight: bold; color: #333; font-size: 12px; display: block;">هوش مصنوعی</span> | |||
<span style="font-size: 10px; color: #777; background: #f0fdf4; padding: 1px 6px; border-radius: 8px; display: inline-block; margin-top: 3px;">۱۲ مقاله</span> | |||
</div> | |||
<!-- کارت نمونه 2 --> | |||
<div class="category-card art" style="background: white; padding: 8px; border-radius: 10px; text-align: center; box-shadow: 0 2px 5px rgba(0,0,0,0.05); border-bottom: 3px solid #ff9f43;"> | |||
<span class="card-title" style="font-weight: bold; color: #333; font-size: 12px; display: block;">نقاشی دیجیتال</span> | |||
<span style="font-size: 10px; color: #777; background: #fff7ed; padding: 1px 6px; border-radius: 8px; display: inline-block; margin-top: 3px;">۸ مقاله</span> | |||
</div> | |||
<!-- کارت نمونه 3 --> | |||
<div class="category-card science" style="background: white; padding: 8px; border-radius: 10px; text-align: center; box-shadow: 0 2px 5px rgba(0,0,0,0.05); border-bottom: 3px solid #54a0ff;"> | |||
<span class="card-title" style="font-weight: bold; color: #333; font-size: 12px; display: block;">فیزیک کوانتوم</span> | |||
<span style="font-size: 10px; color: #777; background: #eff6ff; padding: 1px 6px; border-radius: 8px; display: inline-block; margin-top: 3px;">۵ مقاله</span> | |||
</div> | |||
<!-- کارت نمونه 4 --> | |||
<div class="category-card tech" style="background: white; padding: 8px; border-radius: 10px; text-align: center; box-shadow: 0 2px 5px rgba(0,0,0,0.05); border-bottom: 3px solid #16bd78;"> | |||
<span class="card-title" style="font-weight: bold; color: #333; font-size: 12px; display: block;">برنامهنویسی</span> | |||
<span style="font-size: 10px; color: #777; background: #f0fdf4; padding: 1px 6px; border-radius: 8px; display: inline-block; margin-top: 3px;">۲۵ مقاله</span> | |||
</div> | |||
<div class="category-card art" style="background: white; padding: 8px; border-radius: 10px; text-align: center; box-shadow: 0 2px 5px rgba(0,0,0,0.05); border-bottom: 3px solid #ff9f43;"> | |||
<span class="card-title" style="font-weight: bold; color: #333; font-size: 12px; display: block;">طراحی گرافیک</span> | |||
<span style="font-size: 10px; color: #777; background: #fff7ed; padding: 1px 6px; border-radius: 8px; display: inline-block; margin-top: 3px;">۱۰ مقاله</span> | |||
</div> | |||
</div> | |||
</div> | |||
<style> | <style> | ||
/* تنظیمات گرید */ | |||
.category-grid { | |||
display: grid; | |||
grid-template-columns: repeat(4, 1fr); /* ۴ ستون در دسکتاپ */ | |||
gap: 10px; | |||
} | |||
display: grid | /* واکنشگرایی برای موبایل */ | ||
grid-template-columns: repeat(4, 1fr) | @media (max-width: 768px) { | ||
.category-grid { | |||
grid-template-columns: repeat(2, 1fr); /* ۲ ستون در موبایل */ | |||
. | |||
} | } | ||
} | |||
/* استایلهای کمکی */ | |||
.category-card { transition: transform 0.2s ease; cursor: pointer; } | |||
.category-card:hover { transform: translateY(-3px); } | |||
.filter-btn:hover { opacity: 0.7; } | |||
/* کلاس برای مخفی کردن کارتها بدون خراب کردن گرید */ | |||
.is-hidden { | |||
display: none !important; | |||
} | |||
</style> | </style> | ||
<script> | |||
// تابع فیلتر دستهبندی | |||
function filterSelection(event, category) { | |||
const cards = document.getElementsByClassName("category-card"); | |||
const buttons = document.getElementsByClassName("filter-btn"); | |||
// تغییر استایل دکمهها | |||
for (let btn of buttons) { | |||
btn.style.background = "#eee"; | |||
btn.style.color = "black"; | |||
} | |||
if(event) { | |||
event.currentTarget.style.background = "#16bd78"; | |||
event.currentTarget.style.color = "white"; | |||
} | |||
// فیلتر کردن کارتها با استفاده از کلاس مخفیساز | |||
for (let card of cards) { | |||
if (category === 'all') { | |||
card.classList.remove("is-hidden"); | |||
} else { | |||
if (card.classList.contains(category)) { | |||
card.classList.remove("is-hidden"); | |||
} else { | |||
card.classList.add("is-hidden"); | |||
} | |||
} | |||
} | |||
} | |||
// تابع جستجو | |||
document.getElementById('categorySearch').addEventListener('keyup', function() { | |||
const searchValue = this.value.toLowerCase().trim(); | |||
const cards = document.getElementsByClassName("category-card"); | |||
for (let card of cards) { | |||
const titleElement = card.querySelector('.card-title'); | |||
const titleText = titleElement.innerText.toLowerCase(); | |||
if (titleText.includes(searchValue)) { | |||
card.classList.remove("is-hidden"); | |||
} else { | |||
card.classList.add("is-hidden"); | |||
} | |||
} | |||
}); | |||
</script> | |||
</html> | </html> | ||
نسخهٔ ۷ اوت ۲۰۲۶، ساعت ۱۵:۳۸
هوش مصنوعی
۱۲ مقاله
نقاشی دیجیتال
۸ مقاله
فیزیک کوانتوم
۵ مقاله
برنامهنویسی
۲۵ مقاله
طراحی گرافیک
۱۰ مقاله