| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Cesium - The Platform for 3D Geospatial</title> |
| <style> |
| * { |
| margin: 0; |
| padding: 0; |
| box-sizing: border-box; |
| } |
| |
| :root { |
| --primary-color: #0077b6; |
| --secondary-color: #f4d35e; |
| --dark-bg: #0a1128; |
| --light-bg: #ffffff; |
| --text-color: #1a1a1a; |
| --footer-bg: #1a7578; |
| } |
| |
| body { |
| font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif; |
| line-height: 1.6; |
| color: var(--text-color); |
| } |
| |
| |
| header { |
| background: var(--dark-bg); |
| padding: 1rem 2rem; |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| position: sticky; |
| top: 0; |
| z-index: 100; |
| } |
| |
| .logo { |
| display: flex; |
| align-items: center; |
| gap: 10px; |
| } |
| |
| .logo svg { |
| height: 30px; |
| } |
| |
| .nav-menu { |
| display: flex; |
| gap: 2rem; |
| list-style: none; |
| } |
| |
| .nav-menu a { |
| color: white; |
| text-decoration: none; |
| font-weight: 500; |
| } |
| |
| .nav-actions { |
| display: flex; |
| align-items: center; |
| gap: 1.5rem; |
| } |
| |
| .search-icon { |
| cursor: pointer; |
| color: white; |
| } |
| |
| .sign-in { |
| color: white; |
| text-decoration: none; |
| font-weight: 500; |
| } |
| |
| .sign-up-btn { |
| background: var(--secondary-color); |
| color: var(--dark-bg); |
| padding: 0.5rem 1.5rem; |
| border: none; |
| border-radius: 4px; |
| font-weight: 600; |
| cursor: pointer; |
| } |
| |
| .hamburger { |
| display: none; |
| flex-direction: column; |
| gap: 5px; |
| cursor: pointer; |
| } |
| |
| .hamburger span { |
| width: 25px; |
| height: 3px; |
| background: white; |
| } |
| |
| |
| .hero { |
| background: var(--dark-bg); |
| padding: 4rem 2rem; |
| position: relative; |
| } |
| |
| .hero-content { |
| display: flex; |
| align-items: center; |
| gap: 4rem; |
| max-width: 1400px; |
| margin: 0 auto; |
| } |
| |
| .hero-image { |
| flex: 1; |
| position: relative; |
| } |
| |
| .hero-image img { |
| width: 100%; |
| border-radius: 20px; |
| } |
| |
| .hero-text { |
| flex: 1; |
| } |
| |
| .hero-text h1 { |
| font-size: 3.5rem; |
| color: white; |
| margin-bottom: 1.5rem; |
| line-height: 1.1; |
| } |
| |
| .hero-text p { |
| color: #ccc; |
| font-size: 1.2rem; |
| margin-bottom: 2rem; |
| } |
| |
| .trusted-by { |
| text-align: center; |
| margin-top: 3rem; |
| } |
| |
| .trusted-by p { |
| color: #888; |
| font-size: 0.9rem; |
| margin-bottom: 1rem; |
| } |
| |
| .partner-logos { |
| display: flex; |
| justify-content: center; |
| gap: 3rem; |
| flex-wrap: wrap; |
| } |
| |
| .partner-logos img { |
| height: 30px; |
| opacity: 0.7; |
| } |
| |
| |
| .news-carousel { |
| background: var(--dark-bg); |
| padding: 3rem 2rem; |
| } |
| |
| .carousel-container { |
| max-width: 1200px; |
| margin: 0 auto; |
| position: relative; |
| } |
| |
| .carousel-image { |
| width: 100%; |
| height: 300px; |
| border-radius: 10px; |
| overflow: hidden; |
| position: relative; |
| } |
| |
| .carousel-image img { |
| width: 100%; |
| height: 100%; |
| object-fit: cover; |
| } |
| |
| .carousel-nav { |
| position: absolute; |
| top: 50%; |
| width: 100%; |
| display: flex; |
| justify-content: space-between; |
| padding: 0 2rem; |
| box-sizing: border-box; |
| } |
| |
| .carousel-nav button { |
| background: rgba(255, 255, 255, 0.3); |
| border: none; |
| color: white; |
| font-size: 2rem; |
| cursor: pointer; |
| padding: 1rem; |
| } |
| |
| .carousel-dots { |
| display: flex; |
| justify-content: center; |
| gap: 10px; |
| margin-top: 1.5rem; |
| } |
| |
| .carousel-dot { |
| width: 12px; |
| height: 12px; |
| border-radius: 50%; |
| background: #555; |
| cursor: pointer; |
| } |
| |
| .carousel-dot.active { |
| background: var(--secondary-color); |
| } |
| |
| .more-news { |
| text-align: center; |
| margin-top: 2rem; |
| } |
| |
| .more-news button { |
| background: transparent; |
| border: 2px solid white; |
| color: white; |
| padding: 0.8rem 2rem; |
| border-radius: 4px; |
| cursor: pointer; |
| font-weight: 600; |
| } |
| |
| |
| .features { |
| background: white; |
| padding: 4rem 2rem; |
| } |
| |
| .features-grid { |
| display: grid; |
| grid-template-columns: repeat(3, 1fr); |
| gap: 2rem; |
| max-width: 1200px; |
| margin: 0 auto; |
| } |
| |
| .feature-card { |
| border: 1px solid #eee; |
| border-radius: 10px; |
| padding: 3rem 2rem; |
| text-align: center; |
| transition: transform 0.3s; |
| } |
| |
| .feature-card:hover { |
| transform: translateY(-5px); |
| } |
| |
| .feature-icon { |
| width: 80px; |
| height: 80px; |
| margin-bottom: 1.5rem; |
| } |
| |
| .feature-card h3 { |
| font-size: 1.5rem; |
| margin-bottom: 1rem; |
| } |
| |
| .feature-card p { |
| color: #666; |
| margin-bottom: 2rem; |
| } |
| |
| .learn-more { |
| color: var(--primary-color); |
| text-decoration: none; |
| font-weight: 600; |
| } |
| |
| |
| .build-section { |
| background: white; |
| padding: 4rem 2rem; |
| } |
| |
| .build-section h2 { |
| text-align: center; |
| font-size: 2.5rem; |
| margin-bottom: 1rem; |
| } |
| |
| .build-section p { |
| text-align: center; |
| color: #666; |
| margin-bottom: 2rem; |
| } |
| |
| .build-more { |
| text-align: center; |
| margin-bottom: 3rem; |
| } |
| |
| .build-more a { |
| color: var(--primary-color); |
| text-decoration: none; |
| font-weight: 600; |
| } |
| |
| .build-grid { |
| display: grid; |
| grid-template-columns: repeat(3, 1fr); |
| gap: 2rem; |
| max-width: 1200px; |
| margin: 0 auto; |
| } |
| |
| .build-item { |
| display: flex; |
| flex-direction: column; |
| gap: 1rem; |
| } |
| |
| .build-item img { |
| width: 100%; |
| border-radius: 8px; |
| } |
| |
| .build-item h4 { |
| font-size: 1.5rem; |
| } |
| |
| .build-item p { |
| color: #666; |
| } |
| |
| |
| .cta-section { |
| background: var(--dark-bg); |
| padding: 4rem 2rem; |
| text-align: center; |
| } |
| |
| .cta-section h2 { |
| color: white; |
| font-size: 2rem; |
| margin-bottom: 2rem; |
| } |
| |
| .cta-btn { |
| background: var(--secondary-color); |
| color: var(--dark-bg); |
| padding: 1rem 3rem; |
| border: none; |
| border-radius: 4px; |
| font-weight: 600; |
| cursor: pointer; |
| } |
| |
| |
| .footer { |
| background: var(--footer-bg); |
| color: white; |
| padding: 4rem 2rem 2rem; |
| } |
| |
| .footer-grid { |
| display: grid; |
| grid-template-columns: 2fr 1fr 1fr 1.5fr; |
| gap: 3rem; |
| max-width: 1200px; |
| margin: 0 auto; |
| } |
| |
| .footer-logo svg { |
| height: 40px; |
| margin-bottom: 1rem; |
| } |
| |
| .footer-logo p { |
| opacity: 0.8; |
| } |
| |
| .footer-column h4 { |
| margin-bottom: 1.5rem; |
| font-size: 1.1rem; |
| } |
| |
| .footer-column a { |
| color: white; |
| text-decoration: none; |
| display: block; |
| margin-bottom: 0.8rem; |
| opacity: 0.8; |
| } |
| |
| .footer-column a:hover { |
| opacity: 1; |
| } |
| |
| .footer-bottom { |
| max-width: 1200px; |
| margin: 3rem auto 0; |
| padding-top: 2rem; |
| border-top: 1px solid rgba(255, 255, 255, 0.1); |
| display: flex; |
| justify-content: space-between; |
| font-size: 0.9rem; |
| opacity: 0.7; |
| } |
| |
| |
| .accessibility-btn { |
| position: fixed; |
| bottom: 2rem; |
| left: 2rem; |
| background: var(--secondary-color); |
| border: none; |
| border-radius: 50%; |
| width: 50px; |
| height: 50px; |
| cursor: pointer; |
| z-index: 1000; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| |
| .accessibility-btn svg { |
| width: 25px; |
| height: 25px; |
| } |
| |
| |
| @media (max-width: 1024px) { |
| .hero-content { |
| flex-direction: column; |
| text-align: center; |
| } |
| |
| .hero-text h1 { |
| font-size: 2.5rem; |
| } |
| |
| .features-grid { |
| grid-template-columns: repeat(2, 1fr); |
| } |
| |
| .build-grid { |
| grid-template-columns: repeat(2, 1fr); |
| } |
| |
| .footer-grid { |
| grid-template-columns: repeat(2, 1fr); |
| } |
| } |
| |
| @media (max-width: 768px) { |
| .hamburger { |
| display: flex; |
| } |
| |
| .nav-menu { |
| display: none; |
| } |
| |
| .sign-in, .search-icon { |
| display: none; |
| } |
| |
| .hero-text h1 { |
| font-size: 2rem; |
| } |
| |
| .features-grid { |
| grid-template-columns: 1fr; |
| } |
| |
| .build-grid { |
| grid-template-columns: 1fr; |
| } |
| |
| .footer-grid { |
| grid-template-columns: 1fr; |
| text-align: center; |
| } |
| |
| .footer-bottom { |
| flex-direction: column; |
| gap: 1rem; |
| text-align: center; |
| } |
| |
| .carousel-image { |
| height: 200px; |
| } |
| |
| .partner-logos { |
| gap: 1.5rem; |
| } |
| } |
| |
| @media (max-width: 480px) { |
| header { |
| padding: 1rem; |
| } |
| |
| .hero { |
| padding: 2rem 1rem; |
| } |
| |
| .hero-text h1 { |
| font-size: 1.8rem; |
| } |
| |
| .features-grid, |
| .build-grid { |
| gap: 1.5rem; |
| } |
| |
| .feature-card, |
| .build-item { |
| padding: 2rem 1.5rem; |
| } |
| |
| .accessibility-btn { |
| bottom: 1rem; |
| left: 1rem; |
| } |
| } |
| </style> |
| </head> |
| <body> |
| |
| <button class="accessibility-btn" aria-label="Accessibility options"> |
| <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"> |
| <circle cx="12" cy="12" r="10"/> |
| <path d="M12 6v12M8 10h8"/> |
| </svg> |
| </button> |
|
|
| |
| <header> |
| <div class="logo"> |
| <svg viewBox="0 0 120 30"> |
| <text x="0" y="20" font-family="Arial" font-size="20" font-weight="bold" fill="white">CESIUM</text> |
| <text x="0" y="28" font-family="Arial" font-size="8" fill="#0077b6">Part of Bentley Systems</text> |
| </svg> |
| </div> |
| <nav> |
| <ul class="nav-menu"> |
| <li><a href="#">Why Cesium</a></li> |
| <li><a href="#">Community</a></li> |
| <li><a href="#">Platform</a></li> |
| <li><a href="#">Industries</a></li> |
| <li><a href="#">Learn</a></li> |
| <li><a href="#">Blog</a></li> |
| </ul> |
| </nav> |
| <div class="nav-actions"> |
| <div class="search-icon"> |
| <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"> |
| <circle cx="11" cy="11" r="8"/> |
| <path d="M21 21l-4.35-4.35"/> |
| </svg> |
| </div> |
| <a href="#" class="sign-in">SIGN IN</a> |
| <button class="sign-up-btn">SIGN UP FREE</button> |
| </div> |
| <div class="hamburger"> |
| <span></span> |
| <span></span> |
| <span></span> |
| </div> |
| </header> |
|
|
| |
| <section class="hero"> |
| <div class="hero-content"> |
| <div class="hero-image"> |
| <img src="https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=800&h=600&fit=crop" alt="Earth from space"> |
| </div> |
| <div class="hero-text"> |
| <h1>The Platform for 3D Geospatial</h1> |
| <p>Cesium is the open platform for software applications designed to unleash the power of 3D data.</p> |
| <div class="trusted-by"> |
| <p>TRUSTED BY THOUSANDS</p> |
| <div class="partner-logos"> |
| <img src="https://via.placeholder.com/80x30?text=Google" alt="Google"> |
| <img src="https://via.placeholder.com/80x30?text=Ansys" alt="Ansys"> |
| <img src="https://via.placeholder.com/80x30?text=KOMATSU" alt="KOMATSU"> |
| <img src="https://via.placeholder.com/80x30?text=NVIDIA" alt="NVIDIA"> |
| <img src="https://via.placeholder.com/80x30?text=Unity" alt="Unity"> |
| <img src="https://via.placeholder.com/80x30?text=UNREAL" alt="UNREAL"> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="news-carousel"> |
| <div class="carousel-container"> |
| <div class="carousel-image"> |
| <img src="https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=1200&h=400&fit=crop" alt="Conference presentation"> |
| </div> |
| <div class="carousel-nav"> |
| <button aria-label="Previous slide"><</button> |
| <button aria-label="Next slide">></button> |
| </div> |
| <div class="carousel-dots"> |
| <span class="carousel-dot active"></span> |
| <span class="carousel-dot"></span> |
| <span class="carousel-dot"></span> |
| <span class="carousel-dot"></span> |
| <span class="carousel-dot"></span> |
| <span class="carousel-dot"></span> |
| </div> |
| </div> |
| <div class="more-news"> |
| <button>MORE NEWS</button> |
| </div> |
| </section> |
|
|
| |
| <section class="features"> |
| <div class="features-grid"> |
| <div class="feature-card"> |
| <div class="feature-icon"> |
| <svg viewBox="0 0 80 80"> |
| <rect x="10" y="20" width="60" height="50" rx="5" fill="#0077b6"/> |
| <circle cx="40" cy="50" r="25" fill="white"/> |
| <path d="M25 35 L35 45 L45 35" stroke="white" stroke-width="3" fill="none"/> |
| </svg> |
| </div> |
| <h3>Developer Platform</h3> |
| <p>Everything your software application needs to utilize 3D geospatial data: visualization, data pipelines, curated data, and analytics.</p> |
| <a href="#" class="learn-more">LEARN MORE</a> |
| </div> |
| <div class="feature-card"> |
| <div class="feature-icon"> |
| <svg viewBox="0 0 80 80"> |
| <path d="M10 20 L50 20 L70 40 L70 60 L50 80 L30 80 L10 60 Z" fill="#3b5bdb"/> |
| <circle cx="35" cy="35" r="5" fill="white"/> |
| <circle cx="45" cy="35" r="5" fill="white"/> |
| <circle cx="35" cy="45" r="5" fill="white"/> |
| </svg> |
| </div> |
| <h3>Mission Support</h3> |
| <p>We proudly collaborate with government agencies and the United States Department of Defense.</p> |
| <a href="#" class="learn-more">LEARN MORE</a> |
| </div> |
| <div class="feature-card"> |
| <div class="feature-icon"> |
| <svg viewBox="0 0 80 80"> |
| <circle cx="40" cy="40" r="30" fill="#0077b6"/> |
| <path d="M30 30 L50 50 L70 30" stroke="white" stroke-width="5" fill="none"/> |
| <circle cx="40" cy="20" r="3" fill="white"/> |
| <circle cx="50" cy="30" r="3" fill="white"/> |
| <circle cx="40" cy="40" r="3" fill="white"/> |
| <circle cx="30" cy="50" r="3" fill="white"/> |
| <circle cx="50" cy="50" r="3" fill="white"/> |
| </svg> |
| </div> |
| <h3>Digital Transformation</h3> |
| <p>We work with select partners to bring about industry-wide innovations.</p> |
| <a href="#" class="learn-more">LEARN MORE</a> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="build-section"> |
| <h2>Build Innovative 3D Geospatial Applications</h2> |
| <p>Cesium empowers developers across industries to maximize the potential of their 3D data.</p> |
| <div class="build-more"> |
| <a href="#">MORE ABOUT CESIUM</a> |
| </div> |
| <div class="build-grid"> |
| <div class="build-item"> |
| <img src="https://images.unsplash.com/photo-1524661135-423995f22d0b?w=400&h=250&fit=crop" alt="3D city model"> |
| <h4>Performant</h4> |
| <p>Best in class implementation of 3D Tiles for streaming massive amounts of data.</p> |
| </div> |
| <div class="build-item"> |
| <img src="https://images.unsplash.com/photo-1580582932707-520aed937b7b?w=400&h=250&fit=crop" alt="Terrain model"> |
| <h4>Precise</h4> |
| <p>Visualize and analyze your data on the world's most precise rendering engine.</p> |
| </div> |
| <div class="build-item"> |
| <img src="https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=400&h=250&fit=crop" alt="City aerial view"> |
| <h4>Open</h4> |
| <p>Open and interoperable to support data compatibility and community collaboration.</p> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="cta-section"> |
| <h2>Get started with a free Cesium ion community account</h2> |
| <button class="cta-btn">SIGN UP</button> |
| </section> |
|
|
| |
| <footer class="footer"> |
| <div class="footer-grid"> |
| <div class="footer-logo"> |
| <svg viewBox="0 0 100 40"> |
| <text x="0" y="25" font-family="Arial" font-size="20" font-weight="bold" fill="white">CESIUM</text> |
| <text x="0" y="35" font-family="Arial" font-size="8" fill="rgba(255,255,255,0.7)">Part of Bentley Systems</text> |
| </svg> |
| <p>The Platform for 3D Geospatial</p> |
| </div> |
| <div class="footer-column"> |
| <h4>Inside Cesium</h4> |
| <a href="#">About</a> |
| <a href="#">Team</a> |
| <a href="#">Careers</a> |
| <a href="#">Press</a> |
| <a href="#">Contact</a> |
| </div> |
| <div class="footer-column"> |
| <h4>Connect with us</h4> |
| <a href="#">GitHub</a> |
| <a href="#">X</a> |
| <a href="#">LinkedIn</a> |
| <a href="#">Email</a> |
| <a href="#">Subscribe</a> |
| <a href="#">Podcast</a> |
| </div> |
| <div class="footer-column"> |
| <h4>Featured blog posts</h4> |
| <a href="#">WorldLens Delivers High-Performance VR Exploration with Cesium for Unity</a> |
| <a href="#">Share Your Vision: Present at the 2026 Cesium Developer Conference</a> |
| <a href="#">NORAD Tracks Santa: A Cesium-Powered Christmas Tradition</a> |
| <a href="#">VISIT THE CESIUM BLOG</a> |
| </div> |
| </div> |
| <div class="footer-bottom"> |
| <p>© Cesium GS, Inc. 2025</p> |
| <div> |
| <a href="#">Privacy Policy</a> |
| <a href="#">Terms of Service</a> |
| <a href="#">Cookie Policy</a> |
| <a href="#">Server Status</a> |
| </div> |
| </div> |
| </footer> |
|
|
| <script> |
| |
| const carouselDots = document.querySelectorAll('.carousel-dot'); |
| carouselDots.forEach((dot, index) => { |
| dot.addEventListener('click', () => { |
| carouselDots.forEach(d => d.classList.remove('active')); |
| dot.classList.add('active'); |
| }); |
| }); |
| |
| |
| const prevBtn = document.querySelector('.carousel-nav button:first-child'); |
| const nextBtn = document.querySelector('.carousel-nav button:last-child'); |
| prevBtn.addEventListener('click', () => { |
| let currentIndex = carouselDots.findIndex(d => d.classList.contains('active')); |
| let newIndex = currentIndex > 0 ? currentIndex - 1 : 5; |
| carouselDots.forEach(d => d.classList.remove('active')); |
| carouselDots[newIndex].classList.add('active'); |
| }); |
| nextBtn.addEventListener('click', () => { |
| let currentIndex = carouselDots.findIndex(d => d.classList.contains('active')); |
| let newIndex = currentIndex < 5 ? currentIndex + 1 : 0; |
| carouselDots.forEach(d => d.classList.remove('active')); |
| carouselDots[newIndex].classList.add('active'); |
| }); |
| |
| |
| const hamburger = document.querySelector('.hamburger'); |
| const navMenu = document.querySelector('.nav-menu'); |
| hamburger.addEventListener('click', () => { |
| if (navMenu.style.display === 'block') { |
| navMenu.style.display = 'none'; |
| } else { |
| navMenu.style.display = 'block'; |
| navMenu.style.position = 'absolute'; |
| navMenu.style.top = '100%'; |
| navMenu.style.left = '0'; |
| navMenu.style.right = '0'; |
| navMenu.style.background = '#0a1128'; |
| navMenu.style.padding = '1rem'; |
| } |
| }); |
| </script> |
| </body> |
| </html> |
|
|