首頁 > web前端 > 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 秒緩入;
}

按鈕:懸停{
背景:#4A00E0;
顏色:#fff;
}

最後的想法
建立響應式登陸頁面需要平衡設計、效能和使用者體驗。透過有效地使用 HTML、CSS 和 JavaScript,您可以建立一個具有視覺吸引力和功能性的頁面。

你有什麼想法?在下面的評論中分享您的客製化和技巧! ?

以上是如何使用 HTML、CSS 和 JS 建立響應式登陸頁面的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:dev.to
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板