Sunucu yanıtını kontrol edin

Sunucu yanıtı
NS kayıtları
Whois alanı
Yanıt başlıkları
İstek başlıkları
Ham HTML kodu
200 OK - 3d99.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx
Date: Wed, 28 May 2025 18:38:18 GMT
Content-Type: text/html
Content-Length: 26663
Last-Modified: Fri, 16 May 2025 08:47:25 GMT
Connection: keep-alive
Vary: Accept-Encoding
ETag: "6826fb9d-6827"
Accept-Ranges: bytes

HTTP Kodu 200 OK

200 OK, standart bir başarılı HTTP sunucu yanıtıdır. Bu, istemcinin isteğinin (örneğin, bir tarayıcıdan) başarıyla işlendiği ve sunucunun istenen verileri ilettiği anlamına gelir.

Kod 200 ne zaman kullanılır?

  • Bir web sayfası yüklenirken
  • Bir API yanıtı başarıyla alındığında
  • Bir form veya başka bir HTTP isteği işlenirken

Kod 200 kullanıcı için ne anlama gelir?

Kullanıcı içeriği hatasız alır ve sayfa veya uygulama düzgün çalışır. Kod 200'e veri eşlik ediyorsa, tarayıcı veya program bunu işler ve kullanıcıya görüntüler.

GET / HTTP/1.1
Host: 3d99.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>立体网---psdto3d lenticular software</title>
    <meta name="description" content="立体久久-专业3D立体画设计软件开发商,提供psdto3d、立体分色、印刷防伪等专业软件解决方案">
    <meta name="keywords" content="3D立体画,psdto3d,立体分色,印刷防伪,光栅立体,3D软件,立体设计,立体印刷,3D99">
</head>
<style>
  /* 基础样式 */
:root {
  --primary-color: #2563eb;
  --secondary-color: #64748b;
  --success-color: #16a34a;
  --danger-color: #dc2626;
  --light-color: #f8fafc;
  --dark-color: #1e293b;
  --font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  
  /* Gradient colors */
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  --gradient-secondary: linear-gradient(135deg, #64748b 0%, #94a3b8 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  
  /* Animation timing */
  --transition-fast: 0.15s;
  --transition-normal: 0.3s;
  --transition-slow: 0.5s;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  
  /* Border radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  /* Typography */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfAZ9hiA.woff2') format('woff2');
}

body {
  font-family: var(--font-family);
  line-height: 1.5;
  color: var(--dark-color);
  background-color: var(--light-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Layout */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-xl);
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-xl);
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition-fast) ease;
}

.navbar.scrolled {
  padding: var(--space-sm) var(--space-xl);
  box-shadow: var(--shadow-lg);
}

.nav-logo img {
  height: 3rem;
  transition: transform var(--transition-fast) ease;
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  gap: var(--space-lg);
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-base);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast) ease;
  position: relative;
}

.nav-menu a:hover {
  background: rgba(255,255,255,0.15);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: white;
  transition: all var(--transition-fast) ease;
  transform: translateX(-50%);
}

.nav-menu a:hover::after {
  width: 80%;
}

/* Content sections */
.content-section {
  margin: var(--space-xl) 0;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal) ease;
}

.content-section:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.section-title {
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
  font-size: var(--text-2xl);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 3rem;
  height: 0.25rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
}

.section-title span {
  font-size: var(--text-base);
  color: var(--secondary-color);
  margin-left: var(--space-sm);
  font-weight: 400;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

/* Product cards */
.product-card {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  background: white;
  transition: all var(--transition-normal) ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 
    0 4px 6px rgba(0,0,0,0.05),
    0 1px 3px rgba(0,0,0,0.1) inset;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  border-color: var(--primary-color);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,0.05), transparent);
  transition: 0.5s;
}

.product-card:hover::before {
  left: 100%;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0.05;
  transition: left var(--transition-slow) ease;
  z-index: 0;
}

.product-card:hover::before {
  left: 0;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.product-content {
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

.product-image {
  margin-top: var(--space-md);
  text-align: center;
}

.product-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  transition: transform var(--transition-normal) ease;
}

.product-card:hover .product-image img {
  transform: scale(1.03);
}

.product-title {
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
  font-size: var(--text-xl);
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  position: relative;
  padding-bottom: var(--space-xs);
}

.product-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.product-card:hover .product-title::after {
  width: 80px;
}

.product-title span {
  font-size: var(--text-sm);
  color: var(--secondary-color);
  font-weight: 400;
}

.product-subtitle {
  color: var(--secondary-color);
  font-size: var(--text-sm);
  margin: var(--space-xs) 0;
}

.product-features {
  list-style: none;
  padding-left: var(--space-md);
  margin: var(--space-md) 0;
}

.product-features li {
  position: relative;
  padding-left: var(--space-md);
  margin: var(--space-sm) 0;
}

.product-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.product-price {
  font-size: var(--text-xl);
  color: var(--success-color);
  font-weight: 700;
  margin-top: var(--space-md);
  text-align: right;
  position: relative;
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background: rgba(22,163,74,0.1);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.product-card:hover .product-price {
  background: rgba(22,163,74,0.2);
  transform: scale(1.05);
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.product-tags span {
  background: var(--light-color);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  color: var(--secondary-color);
  transition: all var(--transition-fast) ease;
}

.product-card:hover .product-tags span {
  background: #f1f5f9;
}

/* Hero Section */
.hero {
  background: var(--gradient-primary);
  color: white;
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.1) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(255,255,255,0.1) 0%, transparent 20%);
  background-size: 300px 300px;
  background-attachment: fixed;
  perspective: 1000px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/3d-pattern.png') center/cover;
  opacity: 0.05;
  z-index: 0;
  transform: translateZ(-1px) scale(1.1);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.hero p {
  font-size: var(--text-xl);
  margin-bottom: var(--space-xl);
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

.btn {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-normal) ease;
}

.btn-primary {
  background: white;
  color: var(--primary-color);
}

.btn-primary:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  border: 2px solid white;
  color: white;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: white;
  padding: var(--space-xl) 0 var(--space-lg);
  margin-top: var(--space-xl);
  position: relative;
  overflow: hidden;
  background-image: 
    linear-gradient(45deg, rgba(37,99,235,0.1) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(37,99,235,0.1) 1px, transparent 1px);
  background-size: 40px 40px;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.footer-section {
  margin-bottom: var(--space-lg);
}

.footer-section h4 {
  margin-bottom: var(--space-md);
  color: var(--primary-color);
  font-size: var(--text-lg);
  position: relative;
  display: inline-block;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 3rem;
  height: 0.25rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
}

.footer-section a {
  color: white;
  text-decoration: none;
  display: block;
  margin: var(--space-xs) 0;
  padding: var(--space-xs) 0;
  transition: all var(--transition-fast) ease;
  position: relative;
}

.footer-section a:hover {
  color: rgba(255,255,255,0.9);
}

.footer-section a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: white;
  transition: width var(--transition-fast) ease;
}

.footer-section a:hover::after {
  width: 100%;
}

.footer-bottom {
  text-align: center;
  padding: var(--space-md);
  background-color: rgba(0,0,0,0.2);
  margin-top: var(--space-xl);
}

.footer-bottom a {
  color: var(--primary-color);
  text-decoration: none;
  transition: opacity var(--transition-fast) ease;
}

.footer-bottom a:hover {
  opacity: 0.8;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: var(--text-xl);
  cursor: pointer;
}

/* Loading animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.content-section {
  animation: fadeIn var(--transition-slow) ease;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    padding: var(--space-md);
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: var(--space-md) 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    width: 100%;
    text-align: center;
    padding: var(--space-sm);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

</style>

<body>
    <header class="navbar">
        <div class="nav-logo">
            <img src="images/Logo_0.jpg" alt="公司logo">
        </div>
        <button class="menu-toggle">☰</button>
        <nav class="nav-menu">
            <a href="3d99/lenticular.htm" target="_blank" rel="noopener">光栅产品列表</a>
            <a href="3d99/software.htm" target="_blank" rel="noopener">立体软件</a>
            <a href="3d99/3dtv.htm" target="mainFrame" rel="noopener">立体电视</a>
            <a href="3d99/3dyinshua.htm" target="mainFrame" rel="noopener">立体印刷</a>
            <a href="3d99/ltwd.htm" target="mainFrame" rel="noopener">立体问答</a>
            <a href="3d99/3dpoker.htm" target="_blank" rel="noopener">立体扑克</a>
            <a href="3d99/contactus.htm" target="_blank" rel="noopener">联系我们</a>
            <a href="uploads/up.html" target="_blank" rel="noopener">上传文件</a>
            <a href="uploads/admin.html" target="_blank" rel="noopener">管理文件</a>
            <a href="http://www.ok3d.com" target="_blank" rel="noopener noreferrer">English</a>
        </nav>
    </header>
<main class="container">
    <section class="content-section">
        <h2 class="section-title">立体婚纱照快速制作系统 <span>即将推出</span></h2>
        <div class="product-grid">
            <div class="product-card">
                <div class="product-content">
                    <p>主要优点:</p>
                    <ul>
                        <li>立体感好。精心设计的场景结合简单的人物处理,使它更加栩栩如生。</li>
                        <li>操作简单。不需专业知识,不需其他软件配合,一天就可学会。</li>
                        <li>快速高效。从导入平面照片,到打印输出只需一分钟。换场景只需两秒。</li>
                        <li>场景丰富,即时更新,拥有一流的设计团体,款式永远新鲜。</li>
                        <li>价格合理,按次收费,无资金压力,不会浪费。</li>
                        <li>提供远程单纯立体设计服务。我设计,你装裱,难题交给我,天涯咫尺,网络传递电子文件。</li>
                    </ul>
                </div>
                <div class="product-image">
                    <img src="images/hsSample.gif" width="200" height="111" alt="立体婚纱照示例">
                </div>
            </div>
        </div>
    </section>
  
    <section class="content-section">
        <div class="product-grid">
            <div class="product-card">
                <div class="product-content">
                    <h3 class="product-title">Psdto3d 101 <span>光栅立体画设计软件 (2008-06-28)</span></h3>
                    <p class="product-subtitle">软件登记号:2009SR039988</p>
                    <p class="product-notice">新功能即将推出:单层勾线可以编辑,如复制,删除,移动等,敬请留意</p>
                    <ul class="product-features">
                        <li>支持PSD图层平移、立体与变图自由混合,勾线立体等</li>
                        <li>支持大图,输出文件可达40GB,镜头数可达99</li>
                        <li>支持cmyk四色,印刷输出无损失</li>
                        <li>支持立体循环图案,无视角晃眼区</li>
                        <li>单层勾线时可以勾出左右边界3厘米</li>
                        <li>立体系列图顺序检验</li>
                        <li>支持立体拼版,中线自动对齐</li>
                        <li>参数保存完整,操作更加智能化</li>
                        <li>输出 Gif动画,输出互补色立体图。方便客户看效果</li>
                        <li>支持PSD输出,轻松做图库</li>
                    </ul>
                    <p class="product-advantage">优点:人工节省80%,质量提高4倍</p>
                </div>
                <div class="product-image">
                    <img src="images/psdsample3x.gif" width="100" height="108" alt="Psdto3d 101示例">
                    <div class="product-tags">
                        <span>支持CMYK</span>
                        <span>支持Windows11</span>
                        <span>输出PSD</span>
                        <span>输出TIF</span>
                        <span>输出GIF</span>
                        <span>支持大图</span>
                        <span>圆点光栅</span>
                        <span>循环图案</span>
                        <span>即时打印</span>
                        <span>智能拼版</span>
                        <span>智能拼版</span>
                        <span>内存优化</span>
                        <span>算法改进</span>
                        <span>操作简化</span>
                    </div>
                </div>
            </div>
        </div>
    </section>
    <section class="content-section">
        <div class="product-grid">
            <div class="product-card">
                <div class="product-content">
                    <h3 class="product-title">立体分色软件 <span>(2008-11-11)</span></h3>
                    <p class="product-subtitle">软件登记号:2009SR051251</p>
                    <p>立体RIP,即立体合成分色软件。合成与分色同时进行,一次到位。直接以最佳精度合成,最佳精度分色,可输出高达4800线的 
                      1 bit tiff 文件。1 bit tiff 图像精度高,但占用空间少,能直接在CTP和菲林机上快速输出。虽然网线高(比正常的300线至少高8倍以上),但在普通精度印刷机上仍能正常印出来,效果比传统技术好十倍。该RIP支持10G以上大图。</p>
                    <p>立体RIP的出现,将使光栅立体画的大图处理难题迎刃而解。</p>
                </div>
                <div class="product-tags">
                    <span>超高清晰</span>
                    <span>超强立体</span>
                    <span>超快输出</span>
                </div>
            </div>
        </div>
    </section>
    <section class="content-section">
        <div class="product-grid">
            <div class="product-card">
                <div class="product-content">
                    <h3 class="product-title">印刷防伪软件2.0</h3>
                    <p>适用于将特殊图案隐藏于正常的印刷品中,它有五个优点:</p>
                    <ul class="product-features">
                        <li>原印刷品几乎没有变化</li>
                        <li>叠上高密度光栅,出现清晰图案</li>
                        <li>旋转90度可以看到不同的图案</li>
                        <li>可以多种密度混合加密,令伪造者防不胜防</li>
                        <li>不增加印刷成本</li>
                    </ul>
                </div>
                <div class="product-tags">
                    <span>提倡正版</span>
                    <span>反对盗版</span>
                    <span>自主开发</span>
                    <span>即时更新</span>
                </div>
            </div>

            <div class="product-card">
                <div class="product-content">
                    <h3 class="product-title">圆点立体软件</h3>
                    <p>上下左右全是立体的,无视觉晃眼区,无需对齐,粘贴方便,用在包装材料上,效果极佳。</p>
                    <p class="product-subtitle">软件登记号:2009SR039989</p>
                </div>
                <div class="product-price">5000 RMB</div>
            </div>

            <div class="product-card">
                <div class="product-content">
                    <h3 class="product-title">立体显示器光栅制作软件</h3>
                    <p>轻松制作立体显示器上专用的斜纹狭缝光栅。适用于所有型号,斜角和可视角任意调</p>
                </div>
                <div class="product-price">5000 RMB</div>
            </div>

            <div class="product-card">
                <div class="product-content">
                    <h3 class="product-title">大图立体合成软件</h3>
                    <p>大幅面立体合成软件,精度高,立体强,速度快,幅面大。</p>
                    <p class="product-subtitle">软件登记号:2009SR043376</p>
                </div>
                <div class="product-price">面议</div>
            </div>

            <div class="product-card">
                <div class="product-content">
                    <h3 class="product-title">循环立体软件</h3>
                    <p>用循环图案做的光栅立体图立体感强,不晃眼,适合于产品外包装。</p>
                </div>
                <div class="product-price">20000 RMB</div>
            </div>

            <div class="product-card">
                <div class="product-content">
                    <h3 class="product-title">印刷防伪软件2.0</h3>
                    <p>表面看是正常的印刷品,叠上光栅后,出现清晰的暗藏的图案,如公司标志、名称等,旋转角度后出现另一图案。该隐形图案无法扫描,不增加印刷成本。</p>
                </div>
                <div class="product-price">5000 RMB</div>
            </div>

            <div class="product-card">
                <div class="product-content">
                    <h3 class="product-title">对眼立体图软件</h3>
                    <p>表面上是普通的平面图,细看却是意想不到的立体图</p>
                </div>
                <div class="product-price">1000 RMB</div>
            </div>

            <div class="product-card">
                <div class="product-content">
                    <h3 class="product-title">立体扑克</h3>
                    <p>扑克背面隐藏的立体图案与正面的花色点数相同</p>
                    <a href="3d99/3dpoker.htm" target="_blank" rel="noopener">了解更多</a>
                </div>
                <div class="product-price">50 RMB</div>
            </div>

            <div class="product-card">
                <div class="product-content">
                    <h3 class="product-title">光栅测试软件</h3>
                    <p>LpiTest9 高精度光栅测试,测试更准,使用更方便,全免费使用。</p>
                </div>
                <div class="product-price">免费</div>
            </div>

            <div class="product-card">
                <div class="product-content">
                    <h3 class="product-title">动画制作软件</h3>
                    <p>用摄像头拍照或导入多张图片.合成动画,可设置成QQ表情或在网上展示。免费使用5次</p>
                </div>
                <div class="product-price">10 RMB</div>
            </div>
        </div>
    </section>
<br>
    <footer class="footer">
        <div class="footer-content">
            <div class="footer-section">
                <h4>联系我们</h4>
                <p>深圳市立体久久科技有限公司</p>
                <p>地址:深圳市宝安区西乡街道富华社区宝运达物流中心研发综合楼2D10</p>
                <p>电话: 0755-61282468</p>
                <p>手机: (+86)18811882468</p>
                <p>Email: <a href="mailto:[email protected]" rel="noopener">[email protected]</a></p>
                <p>QQ: 228294445</p>
            </div>
            
            <div class="footer-section">
                <h4>友情链接</h4>
                <a href="http://www.3d99.com" rel="noopener">立体网</a>
                <a href="http://www.szkj.com/" rel="noopener">深圳科技网</a>
                <a href="http://www.our3d.com/" rel="noopener">奥尔立体网</a>
                <a href="http://www.sz3d.com" rel="noopener">深圳立体网</a>
                <a href="http://www.3d40.com/" rel="noopener">立体司令网</a>
                <a href="http://www.075540.com" rel="noopener">深圳四零网</a>
                <a href="http://www.lenticular.vip" rel="noopener">光栅网</a>
                <a href="http://ok3d99.1688.com" rel="noopener">阿里巴巴店铺</a>
                <a href="http://sz01.cn" rel="noopener">淘宝店铺:深圳立体网</a>
                <a href="http://www.psdto3d.com" rel="noopener">立体软件网</a>
            </div>
        </div>
        
        <div class="footer-bottom">
            <p>版权所有者: 深圳市立体久久科技有限公司</p>
            <p><a href="https://beian.miit.gov.cn/" rel="noopener">粤ICP备17107061号</a></p>
        </div>
    </footer>
</main>

<script>
// Mobile menu toggle
const menuToggle = document.querySelector('.menu-toggle');
const navMenu = document.querySelector('.nav-menu');
const navbar = document.querySelector('.navbar');

menuToggle.addEventListener('click', (e) => {
  e.stopPropagation();
  navMenu.classList.toggle('active');
});

// Close menu when clicking outside
document.addEventListener('click', () => {
  if (navMenu.classList.contains('active')) {
    navMenu.classList.remove('active');
  }
});

// Navbar scroll effect
window.addEventListener('scroll', () => {
  if (window.scrollY > 50) {
    navbar.classList.add('scrolled');
  } else {
    navbar.classList.remove('scrolled');
  }
});

// Smooth scroll for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
  anchor.addEventListener('click', function(e) {
    e.preventDefault();
    const target = document.querySelector(this.getAttribute('href'));
    if (target) {
      target.scrollIntoView({
        behavior: 'smooth'
      });
    }
  });
});
</script>
</body>
</html>
                               

Alan adının whois bilgisi

Domain Name: 3D99.COM
Registry Domain ID: 99076532_DOMAIN_COM-VRSN
Registrar WHOIS Server: grs-whois.hichina.com
Registrar URL: http://www.net.cn
Updated Date: 2025-05-06T02:24:51Z
Creation Date: 2003-06-12T09:46:42Z
Registry Expiry Date: 2026-06-12T09:46:42Z
Registrar: Alibaba Cloud Computing (Beijing) Co., Ltd.
Registrar IANA ID: 420
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +86.95187
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: DNS10.HICHINA.COM
Name Server: DNS9.HICHINA.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-28T18:38:10Z <<<
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
TERMS OF USE: You are not authorized to access or query our Whois
by the following terms of use: You agree that you may use this Data only
to: (1) allow, enable, or otherwise support the transmission of mass