صفحه اصلی مغازه شما/دسته بندی موضوعی - فراغیب
Esfandiari (بحث | مشارکتها) بدون خلاصۀ ویرایش برچسب: واگردانی دستی |
Esfandiari (بحث | مشارکتها) بدون خلاصۀ ویرایش |
||
| (۵ نسخهٔ میانیِ ایجادشده توسط همین کاربر نشان داده نشد) | |||
| خط ۱: | خط ۱: | ||
<html> | <html> | ||
<div class=" | <div class="faraghaib-custom-container"> | ||
<!-- بخش جستجو --> | <!-- بخش جستجو --> | ||
<div class="search- | <div class="fz-search-wrapper"> | ||
<input type="text" id="categorySearch" placeholder="جستجو در دستهبندیها... | <input type="text" id="categorySearch" placeholder="جستجو در دستهبندیها..."> | ||
</div> | </div> | ||
<!-- بخش فیلترها --> | <!-- بخش فیلترها --> | ||
<div class="filter-bar | <div class="fz-filter-bar"> | ||
<button class="filter-btn active" onclick="filterSelection('all') | <button class="fz-filter-btn active" onclick="filterSelection(event, 'all')">همه</button> | ||
<button class="filter-btn" onclick="filterSelection('tech') | <button class="fz-filter-btn" onclick="filterSelection(event, 'tech')">تکنولوژی</button> | ||
<button class="filter-btn" onclick="filterSelection('art') | <button class="fz-filter-btn" onclick="filterSelection(event, 'art')">هنر</button> | ||
<button class="filter-btn" onclick="filterSelection('science') | <button class="fz-filter-btn" onclick="filterSelection(event, 'science')">علوم</button> | ||
</div> | </div> | ||
<!-- شبکه کارتها | <!-- شبکه کارتها --> | ||
<div id="categoryGrid" class="category-grid"> | <div id="categoryGrid" class="fz-category-grid"> | ||
<!-- | <!-- نمونه کارتها (کلاسها را مطابق دستهبندی تغییر بده) --> | ||
<div class=" | <div class="fz-card tech"> | ||
<span | <span class="fz-title">هوش مصنوعی</span> | ||
</div> | </div> | ||
<div class="fz-card art"> | |||
<div class=" | <span class="fz-title">نقاشی دیجیتال</span> | ||
<span | |||
</div> | </div> | ||
<div class="fz-card science"> | |||
<div class=" | <span class="fz-title">فیزیک کوانتوم</span> | ||
<span | |||
</div> | </div> | ||
<div class="fz-card tech"> | |||
<div class=" | <span class="fz-title">برنامهنویسی</span> | ||
<span | |||
</div> | </div> | ||
<div class="fz-card art"> | |||
<div class=" | <span class="fz-title">طراحی گرافیک</span> | ||
<span | </div> | ||
<span | |||
<div class="fz-card tech"> | |||
<span class="fz-title">امنیت شبکه</span> | |||
</div> | </div> | ||
| خط ۵۴: | خط ۴۸: | ||
<style> | <style> | ||
/* | /* کانتینر اصلی */ | ||
. | .faraghaib-custom-container { | ||
display: | direction: rtl !important; | ||
/* | font-family: 'IRANSans', 'IRANSansWeb', Tahoma, Arial, sans-serif !important; | ||
grid-template-columns: repeat(4, 1fr); | max-width: 1000px !important; | ||
gap: | margin: 20px auto !important; | ||
padding: 15px !important; | |||
background: #f9f9f9 !important; | |||
border-radius: 15px !important; | |||
border: 1px solid #c9e4d5 !important; | |||
display: block !important; | |||
box-sizing: border-box !important; | |||
} | |||
/* استایل ورودی جستجو */ | |||
.fz-search-wrapper { margin-bottom: 15px; text-align: center; } | |||
.fz-search-wrapper input { | |||
width: 90%; | |||
padding: 10px 18px; | |||
border: 1px solid #c9e4d5; | |||
border-radius: 25px; | |||
outline: none; | |||
font-size: 15px; | |||
font-family: 'IRANSans', 'IRANSansWeb', Tahoma, Arial, sans-serif !important; | |||
transition: 0.3s; | |||
} | |||
.fz-search-wrapper input:focus { border-color: #16bd78; box-shadow: 0 0 5px rgba(22, 189, 120, 0.2); } | |||
/* استایل دکمههای فیلتر */ | |||
.fz-filter-bar { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 20px; } | |||
.fz-filter-btn { | |||
padding: 6px 18px; | |||
border-radius: 20px; | |||
border: none; | |||
background: #eee; | |||
cursor: pointer; | |||
font-size: 14px; | |||
font-family: 'IRANSans', 'IRANSansWeb', Tahoma, Arial, sans-serif !important; | |||
transition: 0.3s; | |||
} | |||
.fz-filter-btn.active { background: #16bd78 !important; color: white !important; font-weight: bold; } | |||
/* چیدمان شبکه کارتها */ | |||
.fz-category-grid { | |||
display: grid !important; | |||
grid-template-columns: repeat(4, 1fr) !important; | |||
gap: 12px !important; | |||
width: 100% !important; | |||
} | |||
/* استایل کارت نهایی */ | |||
.fz-card { | |||
background: white !important; | |||
height: 42px !important; | |||
display: flex !important; | |||
align-items: center !important; | |||
justify-content: center !important; | |||
padding: 0 10px !important; | |||
border-radius: 8px !important; | |||
box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important; | |||
border-bottom: 4px solid #ddd !important; /* خط رنگی پایین */ | |||
box-sizing: border-box !important; | |||
cursor: pointer; | |||
transition: all 0.2s ease; | |||
margin: 0 !important; | |||
} | } | ||
/* | .fz-card:hover { transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important; } | ||
/* استایل فونت داخل کارت (بزرگ شده) */ | |||
.fz-title { | |||
font-family: 'IRANSans', 'IRANSansWeb', Tahoma, Arial, sans-serif !important; | |||
font-weight: 500 !important; | |||
color: #333 !important; | |||
font-size: 16px !important; /* اندازه فونت بزرگ شده */ | |||
text-align: center; | |||
white-space: nowrap; | |||
overflow: hidden; | |||
text-overflow: ellipsis; | |||
} | } | ||
/* | /* رنگبندی دستهبندیها */ | ||
@media (max-width: | .fz-card.tech { border-bottom-color: #16bd78 !important; } | ||
.category-grid { | .fz-card.art { border-bottom-color: #ff9f43 !important; } | ||
.fz-card.science { border-bottom-color: #54a0ff !important; } | |||
/* واکنشگرایی موبایل */ | |||
@media (max-width: 768px) { | |||
.fz-category-grid { grid-template-columns: repeat(2, 1fr) !important; } | |||
} | } | ||
/* کلاس مخفیسازی برای فیلتر و جستجو */ | |||
. | .is-hidden { display: none !important; } | ||
</style> | </style> | ||
<script> | <script> | ||
function filterSelection(category) { | // تابع فیلتر دستهبندی | ||
const cards = document.getElementsByClassName(" | function filterSelection(event, category) { | ||
const buttons = document.getElementsByClassName("filter-btn"); | const cards = document.getElementsByClassName("fz-card"); | ||
const buttons = document.getElementsByClassName("fz-filter-btn"); | |||
// حذف حالت فعال از همه دکمهها | |||
for (let btn of buttons) btn.classList.remove("active"); | |||
// اضافه کردن حالت فعال به دکمه کلیک شده | |||
event.currentTarget.classList.add("active"); | |||
// | // نمایش یا عدم نمایش کارتها | ||
for (let card of cards) { | for (let card of cards) { | ||
if (category === 'all') { | if (category === 'all' || card.classList.contains(category)) { | ||
card. | card.classList.remove("is-hidden"); | ||
} else { | } else { | ||
card.classList.add("is-hidden"); | |||
} | } | ||
} | } | ||
} | } | ||
// تابع جستجوی زنده | |||
document.getElementById('categorySearch').addEventListener('keyup', function() { | document.getElementById('categorySearch').addEventListener('keyup', function() { | ||
const | const val = this.value.toLowerCase().trim(); | ||
const cards = document.getElementsByClassName(" | const cards = document.getElementsByClassName("fz-card"); | ||
for (let card of cards) { | for (let card of cards) { | ||
const title = card.querySelector(' | const title = card.querySelector('.fz-title').innerText.toLowerCase(); | ||
if (title.includes( | if (title.includes(val)) { | ||
card. | card.classList.remove("is-hidden"); | ||
} else { | } else { | ||
card. | card.classList.add("is-hidden"); | ||
} | } | ||
} | } | ||
}); | }); | ||
</script> | </script> | ||
</html> | </html> | ||
نسخهٔ کنونی تا ۷ اوت ۲۰۲۶، ساعت ۱۸:۰۴
هوش مصنوعی
نقاشی دیجیتال
فیزیک کوانتوم
برنامهنویسی
طراحی گرافیک
امنیت شبکه