بدون خلاصۀ ویرایش |
بدون خلاصۀ ویرایش |
||
| (۵ نسخهٔ میانیِ ایجادشده توسط همین کاربر نشان داده نشد) | |||
| خط ۱: | خط ۱: | ||
<html lang="fa"> | |||
<head> | |||
<meta charset="UTF-8"> | |||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |||
<title>علیرضا اسفندیاری</title> | |||
<style> | |||
@import url('https://cdn.jsdelivr.net/gh/rastikerdar/IRANSans@v5.0/IRANSans.css'); | |||
body{font-family:'IRANSans','IRANSans Light',sans-serif;margin:0;padding:0;background:#f9f9f9;} | |||
/* بخش ۱: هدر */ | |||
.unique-header{ | |||
width:95%;max-width:1000px;margin:20px auto 0 auto; | |||
background:linear-gradient(135deg,#1E90FF,#FF4500); | |||
color:#fff;padding:12px 20px;border-radius:12px; | |||
box-shadow:0 4px 15px rgba(0,0,0,0.3); | |||
font-size:28px;font-weight:300;text-align:center; | |||
opacity:0;transform:translateY(-20px);animation:fadeIn 1s forwards; | |||
} | |||
@keyframes fadeIn{to{opacity:1;transform:translateY(0);}} | |||
.header-link{display:block;margin-top:6px;font-size:14px;color:#fff;text-decoration:underline;cursor:pointer;} | |||
.header-link:hover{color:#FFFF00;} | |||
/* بخش ۲: ویدیو */ | |||
.video-section{ | |||
width:95%;max-width:1000px;margin:30px auto 50px auto; | |||
opacity:0;transform:translateY(30px);transition:all 0.8s; | |||
} | |||
.video-container{ | |||
position:relative;border-radius:12px;overflow:hidden; | |||
box-shadow:0 4px 15px rgba(0,0,0,0.2); | |||
height:250px; | |||
} | |||
.glowing-border{ | |||
position:absolute;top:-5px;left:-5px;right:-5px;bottom:-5px; | |||
border-radius:15px; | |||
background:linear-gradient(270deg,#1E90FF,#FF4500,#1E90FF); | |||
background-size:600% 600%;animation:glow 8s linear infinite;z-index:1; | |||
} | |||
@keyframes glow{ | |||
0%{background-position:0% 50%;} | |||
50%{background-position:100% 50%;} | |||
100%{background-position:0% 50%;} | |||
} | |||
.video-container video{ | |||
width:100%; height:100%; object-fit:cover; border-radius:12px; position:relative; z-index:2; display:block; | |||
} | |||
/* بخش ۳: شبکههای اجتماعی */ | |||
.social-section{width:95%;max-width:1000px;margin:20px auto 50px auto;text-align:center;} | |||
.social-icons{display:flex;justify-content:center;gap:20px;flex-wrap:wrap;} | |||
.social-icons a{ | |||
font-size:40px;display:inline-flex;align-items:center;justify-content:center; | |||
text-decoration:none;transition:transform 0.2s ease,filter 0.2s;opacity:0;transform:translateY(20px); | |||
} | |||
.social-icons a.show{opacity:1;transform:translateY(0);} | |||
.social-icons a:hover,.social-icons a:active{transform:scale(1.2);filter:drop-shadow(0 0 5px rgba(255,215,0,0.7));} | |||
.social-icons i{animation:pulse 2s infinite alternate;display:inline-block;} | |||
@keyframes pulse{ | |||
0%{text-shadow:0 0 2px rgba(255,255,255,0.5);} | |||
50%{text-shadow:0 0 8px rgba(255,255,255,0.8);} | |||
100%{text-shadow:0 0 4px rgba(255,255,255,0.6);} | |||
} | |||
/* بخش ۴: دستهبندیها */ | |||
.categories-section{ | |||
width:95%; max-width:1000px; | |||
margin:40px auto 40px auto; | |||
opacity:0; transform:translateY(20px); | |||
transition:all 0.8s; | |||
} | |||
.categories-section.show{ | |||
opacity:1; | |||
transform:translateY(0); | |||
} | |||
.categories-title{ | |||
font-size:22px; | |||
font-weight:300; | |||
margin-bottom:20px; | |||
text-align:center; | |||
color:#333; | |||
} | |||
.categories-container{ | |||
display:flex; | |||
flex-wrap:wrap; | |||
gap:20px; | |||
justify-content:center; | |||
} | |||
.category-card{ | |||
background:#fff; | |||
padding:15px 25px; | |||
border-radius:12px; | |||
box-shadow:0 4px 10px rgba(0,0,0,0.1); | |||
font-size:16px; | |||
cursor:pointer; | |||
transition:transform 0.3s, box-shadow 0.3s; | |||
text-decoration:none; | |||
color:#1E90FF; | |||
border:1px solid #eee; | |||
} | |||
.category-card:hover{ | |||
transform:translateY(-5px); | |||
box-shadow:0 6px 15px rgba(0,0,0,0.2); | |||
color:#FF4500; | |||
} | |||
* | /* بخش ۵: باکس متن */ | ||
.text-box-section{ | |||
width:95%; max-width:1000px; | |||
margin:40px auto 60px auto; | |||
} | |||
.text-box{ | |||
background:linear-gradient(145deg, #ffffff, #f0f0f0); | |||
border-radius:12px; | |||
padding:20px; | |||
box-shadow:0 4px 12px rgba(0,0,0,0.15); | |||
font-size:16px; | |||
line-height:1.6; | |||
color:#333; | |||
opacity:0; | |||
transform:translateY(20px); | |||
transition:all 0.8s; | |||
} | |||
.text-box.show{ | |||
opacity:1; | |||
transform:translateY(0); | |||
} | |||
/* بخش ۶: فوتر */ | |||
.unique-footer { | |||
width:95%; | |||
max-width:1000px; | |||
margin:40px auto; | |||
background: linear-gradient(135deg,#1E90FF,#FF4500); | |||
border-radius:12px; | |||
color:#fff; | |||
padding:20px; | |||
box-shadow:0 4px 15px rgba(0,0,0,0.3); | |||
text-align:center; | |||
} | |||
.footer-container { | |||
display:flex; | |||
flex-wrap:wrap; | |||
justify-content:space-around; | |||
align-items:center; | |||
gap:15px; | |||
} | |||
.footer-phone { | |||
font-size:2em; | |||
font-weight:bold; | |||
color:#fff; | |||
text-decoration:none; | |||
} | |||
.footer-phone:hover { | |||
text-decoration:underline; | |||
} | |||
.footer-address { | |||
font-size:1em; | |||
} | |||
.footer-address::first-letter { | |||
font-size:1.2em; | |||
font-weight:bold; | |||
} | |||
.footer-icons img { | |||
width:40px; | |||
height:40px; | |||
margin:0 5px; | |||
} | |||
.footer-map img { | |||
width:100%; | |||
max-width:400px; | |||
border-radius:12px; | |||
margin-top:10px; | |||
} | |||
* | /* ریسپانسیو */ | ||
@media(max-width:600px){ | |||
.unique-header{font-size:20px;padding:8px 12px;} | |||
.header-link{font-size:12px;} | |||
.social-icons a{font-size:32px;} | |||
.category-card{font-size:14px;padding:12px 18px;} | |||
.categories-title{font-size:18px;} | |||
.text-box{font-size:14px;padding:15px;} | |||
.video-container{height:180px;} | |||
.footer-container {flex-direction:column; gap:10px;} | |||
.footer-phone {font-size:1.6em;} | |||
.footer-address::first-letter {font-size:1.15em;} | |||
.footer-icons img {width:30px; height:30px;} | |||
} | |||
</style> | |||
</head> | |||
<body> | |||
<!-- هدر --> | |||
<div class="unique-header"> | |||
علیرضا اسفندیاری | |||
<a class="header-link" href="#social-section">برو به شبکهها</a> | |||
</div> | |||
== | <!-- ویدیو --> | ||
<div class="video-section"> | |||
<div class="video-container"> | |||
<div class="glowing-border"></div> | |||
<video autoplay muted loop playsinline preload="metadata" poster="video-poster.jpg"> | |||
<source src="video1.mp4" type="video/mp4"> | |||
مرورگر شما از پخش ویدیو پشتیبانی نمیکند. | |||
</video> | |||
</div> | |||
</div> | |||
<!-- شبکههای اجتماعی --> | |||
<div class="social-section" id="social-section"> | |||
<div class="social-icons"> | |||
<a href="https://t.me" target="_blank"><i class="fab fa-telegram-plane" style="color:#0088cc;"></i></a> | |||
<a href="https://www.instagram.com" target="_blank"><i class="fab fa-instagram" style="color:#C13584;"></i></a> | |||
<a href="https://www.whatsapp.com" target="_blank"><i class="fab fa-whatsapp" style="color:#25D366;"></i></a> | |||
<a href="https://eitaa.com" target="_blank"><i class="fas fa-comment-alt" style="color:#00bcd4;"></i></a> | |||
<a href="https://rubika.ir" target="_blank"><i class="fas fa-play-circle" style="color:#ff004f;"></i></a> | |||
<a href="https://shad.ir" target="_blank"><i class="fas fa-school" style="color:#00a1f1;"></i></a> | |||
<a href="https://www.youtube.com" target="_blank"><i class="fab fa-youtube" style="color:#FF0000;"></i></a> | |||
<a href="https://www.aparat.com" target="_blank"><i class="fas fa-video" style="color:#ff7700;"></i></a> | |||
</div> | |||
</div> | |||
== | <!-- دستهبندیها --> | ||
<div class="categories-section" id="categories"> | |||
<h2 class="categories-title">دستهبندیها</h2> | |||
<div class="categories-container"> | |||
<a href="/wiki/رده:رستوران_ها_و_کافی_شاپ_ها" class="category-card">رستورانها و کافیشاپها</a> | |||
<a href="/wiki/رده:فروشگاه_ها_و_خرده_فروشی_ها" class="category-card">فروشگاهها و خردهفروشیها</a> | |||
<a href="/wiki/رده:خدمات_پزشکی_و_سلامت" class="category-card">خدمات پزشکی و سلامت</a> | |||
<a href="/wiki/رده:خدمات_زیبایی_و_آرایشگاه_ها" class="category-card">خدمات زیبایی و آرایشگاهها</a> | |||
<a href="/wiki/رده:آموزشگاه_ها_و_موسسات_آموزشی" class="category-card">آموزشگاهها و موسسات آموزشی</a> | |||
<a href="/wiki/رده:ورزش_و_سرگرمی" class="category-card">ورزش و سرگرمی</a> | |||
<a href="/wiki/رده:حمل_و_نقل_و_تاکسی_آنلاین" class="category-card">حملونقل و تاکسی آنلاین</a> | |||
<a href="/wiki/رده:املاک_و_مستغلات" class="category-card">املاک و مستغلات</a> | |||
<a href="/wiki/رده:فناوری_و_IT" class="category-card">فناوری و IT</a> | |||
<a href="/wiki/رده:صنایع_و_تولید" class="category-card">صنایع و تولید</a> | |||
<a href="/wiki/رده:هنری_و_فرهنگی" class="category-card">هنری و فرهنگی</a> | |||
<a href="/wiki/رده:خدمات_حقوقی_و_مشاوره" class="category-card">خدمات حقوقی و مشاوره</a> | |||
</div> | |||
</div> | |||
<!-- باکس متن --> | |||
<div class="text-box-section"> | |||
<div class="text-box"> | |||
<p> | |||
فراغیب، دانشنامهای آزاد و نوآور است که هدف آن ارائهی دانش، اندیشه و آگاهی در زمینههای مختلف از علم و فناوری تا فرهنگ و دین است. | |||
این بخش برای بهبود سئو و ارائه توضیحات تکمیلی طراحی شده تا مخاطب و موتورهای جستجو بهخوبی با محتوای صفحه آشنا شوند. | |||
</p> | |||
</div> | |||
</div> | |||
== | <!-- فوتر --> | ||
<div class="unique-footer"> | |||
<div class="footer-container"> | |||
<a href="tel:+989356959035" class="footer-phone">09356959035</a> | |||
<span class="footer-address">تهران نسیم شهر حصارک بالا بلوار نیایش پلاک 120</span> | |||
== | <span class="footer-icons"> | ||
<img src="zarinpal-icon.png" alt="زرین پال" title="زرین پال"> | |||
<img src="enamad-icon.png" alt="نماد اعتماد" title="نماد اعتماد"> | |||
== | </span> | ||
<div class="footer-map"> | |||
<img src="https://api.neshan.org/v1/static?lat=35.5615&lng=51.2410&zoom=15&size=600,300&marker=true&key=web.2ccbf006526649a48f151aa60fdd2dac" alt="نقشه محل ما"> | |||
</div> | |||
</div> | |||
</div> | |||
<script> | |||
document.addEventListener("DOMContentLoaded", function(){ | |||
document.querySelector('.header-link').addEventListener('click',function(e){ | |||
e.preventDefault(); | |||
const target=document.querySelector(this.getAttribute('href')); | |||
if(target) target.scrollIntoView({behavior:'smooth'}); | |||
}); | |||
const videoSection=document.querySelector('.video-section'); | |||
const obsVideo=new IntersectionObserver(entries=>{entries.forEach(entry=>{if(entry.isIntersecting){videoSection.style.opacity=1; videoSection.style.transform='translateY(0)';}});},{threshold:0.3}); | |||
obsVideo.observe(videoSection); | |||
const icons=document.querySelectorAll('.social-icons a'); | |||
const obsIcons=new IntersectionObserver(entries=>{entries.forEach(entry=>{if(entry.isIntersecting){icons.forEach((icon,i)=>{setTimeout(()=>{icon.classList.add('show');}, i*150);});}});},{threshold:0.3}); | |||
obsIcons.observe(document.querySelector('.social-section')); | |||
const categoriesSection=document.querySelector('.categories-section'); | |||
const obsCategories=new IntersectionObserver(entries=>{entries.forEach(entry=>{if(entry.isIntersecting){categoriesSection.classList.add('show');}});},{threshold:0.3}); | |||
obsCategories.observe(categoriesSection); | |||
const textBox=document.querySelector('.text-box'); | |||
const obsTextBox=new IntersectionObserver(entries=>{entries.forEach(entry=>{if(entry.isIntersecting){textBox.classList.add('show');}});},{threshold:0.3}); | |||
obsTextBox.observe(textBox); | |||
}); | |||
</script> | |||
<!-- FontAwesome --> | |||
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/js/all.min.js"></script> | |||
</body> | |||
</html> | |||
[[en:09356959035]] | |||
نسخهٔ کنونی تا ۱۱/۳۰/۲۰۲۵ میلادی، ساعت ۱۳:۱۶
علیرضا اسفندیاری
برو به شبکهها
دستهبندیها
فراغیب، دانشنامهای آزاد و نوآور است که هدف آن ارائهی دانش، اندیشه و آگاهی در زمینههای مختلف از علم و فناوری تا فرهنگ و دین است. این بخش برای بهبود سئو و ارائه توضیحات تکمیلی طراحی شده تا مخاطب و موتورهای جستجو بهخوبی با محتوای صفحه آشنا شوند.