"일꾼이 일을 잘하려면 먼저 도구를 갈고 닦아야 한다." - 공자, 『논어』.
첫 장 > 프로그램 작성 > 프런트엔드 시도

프런트엔드 시도

2024-11-04에 게시됨
검색:178

프런트엔드 챌린지 v24.09.04, Glam Up My Markup: Space

에 대한 제출물입니다.

내가 만든 것

우주 탐사에 대한 정보를 제공하는 우주 테마의 랜딩페이지를 구축했습니다. 목표는 우주 역사, 현재 임무, 미래 임무 등의 주요 측면을 강조하는 매력적이고 미니멀한 디자인을 만드는 것이었습니다. 이 페이지에는 홈, 정보, 역사, 현재 임무, 향후 임무, 설문지 및 연락처 정보에 대한 섹션이 포함되어 있습니다.

데모
여기에서 프로젝트를 실시간으로 볼 수 있습니다. 다음은 랜딩 페이지의 스크린샷입니다:
Frontend Attempt
우주 탐사 랜딩 페이지

Github에서 코드를 확인할 수도 있습니다.

여행

이 프로젝트를 만드는 것은 흥미로운 여정이었습니다. 프로세스에 대한 몇 가지 주요 사항은 다음과 같습니다.

디자인 및 레이아웃: 몰입감 있는 경험을 만들기 위해 어두운 공간 테마의 배경과 함께 깔끔하고 미니멀한 디자인을 목표로 했습니다. 레이아웃은 간단하면서도 유익하므로 사용자가 다양한 섹션을 쉽게 탐색할 수 있습니다.

내용: 우주 탐사의 역사, 현재와 미래의 임무에 대한 자세한 정보를 담았습니다. 설문지 섹션을 통해 사용자는 우주 탐사에 대한 상호 작용과 생각을 공유할 수 있습니다.

과제: 과제 중 하나는 애니메이션 상호 작용이 다양한 장치와 화면 크기에서 원활하게 작동하는지 확인하는 것이었습니다. 이 과정에서 반응형 디자인과 브라우저 간 호환성에 대해 많은 것을 배웠습니다.

향후 계획: 우주 사실에 대한 퀴즈, 우주 탐사에 있어서 중요한 사건의 타임라인 등 대화형 요소를 더 추가할 계획입니다. 또한 페이지를 더욱 매력적으로 만들기 위해 고급 애니메이션과 전환 기능을 통합하고 싶습니다.

암호

HTML



    Space Exploration

Welcome to Space Exploration

Home

Discover the wonders of the universe and our journey into space.

About

Learn about the history and future of space exploration.

History of Space Exploration

1. Early Concepts (Pre-20th Century)

Ancient Civilizations: Ancient cultures like the Babylonians, Egyptians, Greeks, and Chinese were among the first to study the stars and celestial objects, laying the foundation for astronomy.

17th Century: Johannes Kepler’s laws of planetary motion and Isaac Newton’s law of universal gravitation provided the necessary understanding for future space travel concepts.

2. Early 20th Century

Tsiolkovsky's Rocket Equation (1903): Russian scientist Konstantin Tsiolkovsky proposed the idea of space travel using rockets and formulated the Tsiolkovsky rocket equation, a fundamental principle in astronautics.

Robert Goddard (1926): An American physicist, Robert Goddard, successfully launched the world's first liquid-fueled rocket, proving that space travel was possible.

3. The Space Race (1950s-1970s)

Sputnik 1 (1957): The Soviet Union launched the first artificial satellite, Sputnik 1, into space, marking the beginning of the Space Age.

Yuri Gagarin (1961): Soviet cosmonaut Yuri Gagarin became the first human to orbit Earth aboard Vostok 1, a major milestone in space exploration.

Apollo 11 (1969): The United States' NASA successfully landed astronauts Neil Armstrong and Buzz Aldrin on the Moon, with Armstrong famously declaring, "That's one small step for man, one giant leap for mankind."

4. Post-Moon Landings and the Space Shuttle Era (1970s-1990s)

Space Stations:

  • Salyut and Mir (1971-1986): The Soviet Union launched a series of space stations, culminating in the long-lasting Mir, which operated until 2001.
  • Skylab (1973): The United States launched its first space station, Skylab, which was operational for six years.

Space Shuttle Program (1981-2011): NASA’s reusable Space Shuttle fleet completed 135 missions over 30 years, including launching satellites, conducting scientific research, and assembling the International Space Station (ISS).

5. International Cooperation and Space Exploration (1990s-Present)

International Space Station (ISS) (1998-present): A joint effort by NASA, Roscosmos (Russia), ESA (Europe), JAXA (Japan), and other partners, the ISS serves as a hub for scientific research and international collaboration in low Earth orbit.

Mars Exploration:

  • Rovers and Orbiters: The Mars rovers like Spirit, Opportunity, Curiosity, and Perseverance have provided detailed information about the Martian surface and its potential to support life.
  • ExoMars (2020): A European-Russian mission designed to search for signs of life on Mars.

6. Private Space Exploration and the Future (2000s-Present)

Commercial Spaceflight: Companies like SpaceX, Blue Origin, and Virgin Galactic are pioneering commercial space travel, aiming to make space more accessible to private individuals and researchers.

Current Missions

Explore the ongoing missions that are expanding our understanding of the universe.

Future Missions

Learn about the upcoming missions that aim to push the boundaries of space exploration.

Questionnaire















Contact

Get in touch with us for more information about space exploration.

© 2024 Space Exploration. All rights reserved.

CSS

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #000;
    color: #fff;
}

.space-background {
    background: rgba(0, 0, 0, 0.8) url('https://www.nasa.gov/sites/default/files/thumbnails/image/potw2048a.jpg') no-repeat center center;
    background-size: cover;
}

header {
    padding: 1rem 0;
    text-align: center;
}

header h1 {
    margin-bottom: 0.5rem;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

main {
    padding: 2rem;
}

section {
    margin-bottom: 2rem;
}

form {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 5px;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 5px;
}

form input[type="submit"] {
    background: #333;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background: #555;
}

footer {
    text-align: center;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}


이 프로젝트는 단독 작업이었지만 다음 리소스와 영감을 얻었습니다.

  • NASA는 놀라운 우주 이미지를 제공합니다.

  • 웹 개발에 대한 훌륭한 문서를 제공하는 MDN 웹 문서입니다.

특허
이 프로젝트는 MIT 라이선스에 따라 라이선스가 부여됩니다. 코드를 원하는 대로 자유롭게 사용하고 수정하세요.

릴리스 선언문 이 글은 https://dev.to/abhiramp_2005/frontend-attempt-pp0?1에서 복제되었습니다. 침해 내용이 있는 경우, [email protected]으로 연락하여 삭제하시기 바랍니다.
최신 튜토리얼 더>

부인 성명: 제공된 모든 리소스는 부분적으로 인터넷에서 가져온 것입니다. 귀하의 저작권이나 기타 권리 및 이익이 침해된 경우 자세한 이유를 설명하고 저작권 또는 권리 및 이익에 대한 증거를 제공한 후 이메일([email protected])로 보내주십시오. 최대한 빨리 처리해 드리겠습니다.

Copyright© 2022 湘ICP备2022001581号-3