> 웹 프론트엔드 > CSS 튜토리얼 > HTML, CSS, JS를 사용하여 반응형 랜딩 페이지를 구축하는 방법

HTML, CSS, JS를 사용하여 반응형 랜딩 페이지를 구축하는 방법

Barbara Streisand
풀어 주다: 2024-12-03 20:32:13
원래의
1000명이 탐색했습니다.

How to Build a Responsive Landing Page with HTML, CSS, and JS

1. 프로젝트 설정
다음 구조로 프로젝트 폴더를 생성하는 것부터 시작하세요.

landing-page/
  ├── index.html
  ├── styles.css
  ├── script.js
로그인 후 복사

HTML: 구조

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Responsive Landing Page</title>
  <link rel="stylesheet" href="styles.css">
</head>
<body>
  <header>



<p><strong>2. Styling with CSS</strong><br>
</p>

<pre class="brush:php;toolbar:false">/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background: #4A00E0;
  color: #fff;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  background: linear-gradient(135deg, #8E2DE2, #4A00E0);
  color: #fff;
}

.hero-content h2 {
  font-size: 2.5rem;
}

.hero img {
  width: 40%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero img {
    width: 80%;
  }
}

로그인 후 복사

3. JavaScript로 향상

// script.js
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
  anchor.addEventListener("click", function(e) {
    e.preventDefault();
    document.querySelector(this.getAttribute("href")).scrollIntoView({
      behavior: "smooth"
    });
  });
});

**4. Responsive and Engaging Design**
To make your landing page responsive:

Use flexbox and media queries for layouts.
Optimize images for different screen sizes.
Test responsiveness using browser developer tools.
5. Optional: Adding Animations
For modern aesthetics, use CSS animations.

로그인 후 복사
Optional: Adding Animations
로그인 후 복사

/* 버튼 호버 */
버튼 {
배경: #fff;
색상: #4A00E0;
테두리: 없음;
패딩: 10px 20px;
커서: 포인터;
전환: 모두 0.3초 Ease-In-Out;
}

버튼:호버 {
배경: #4A00E0;
색상: #fff;
}

최종 생각
반응형 랜딩 페이지를 구축하려면 디자인, 성능, 사용자 경험의 균형이 필요합니다. HTML, CSS, JavaScript를 효과적으로 사용하면 시각적으로 매력적이고 기능적인 페이지를 만들 수 있습니다.

당신의 생각은 무엇입니까? 아래 댓글로 여러분의 맞춤 설정과 팁을 공유해 주세요! ?

위 내용은 HTML, CSS, JS를 사용하여 반응형 랜딩 페이지를 구축하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:dev.to
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿