Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

Space tourism website with parallax effect using GSAP, Vite, Sass, BEM

#bem#gsap#sass/scss#vite
P
tediko 6,580

@tediko

Desktop design screenshot for the Space tourism multi-page website coding challenge

This is a solution for...

  • HTML
  • CSS
  • JS
3intermediate
View challenge

Design comparison


SolutionDesign

Solution retrospective


What challenges did you encounter, and how did you overcome them?

Hello! 👋

That was another entertaining challenge in which I learned a lot of new things! Right from the start I decided it would be a great idea to use GSAP library to create a parallax effect for sections, rather than creating subpages. Each section has tabs through which user can display new content. New content is dynamically added in JavaScript so I needed find a way to prevent images from loading each time tab has changed. For this purpose I used the Intersection Observer API which helps me detect visibility of a section that appears in the user's viewport. When this happens the preloadImages() function is called and creates new HTMLImageElement instance with Image() constructor to which I attach the src of each image from the section. In the "crew" and "technology" sections, the user can change tabs and content by moving the mouse/touch horizontally. Since the page has a lot of animations ScrollTrigger animations using GSAP are disabled for users who have set prefers-reduced-motion. Learned how to share variables between JavaScript and Sass since I needed to use media query breakpoint variable value for matchMedia but I didn't want to do it with copy and paste. I found a way to synchronize my css and js so that my CSS is the source of truth and share values with JavaScript. I used CSS Modules for this purpose. CSS Modules with ICSS specification introduces the :export directive to act as a way to export defined values. Coupled with Sass variables, it allows you to export them.

🐞Bugs:

  • Unfortunately, when creating the effect of moving sections using position: sticky and GSAP, there are several bugs that I cannot eliminate at the moment. When a user uses the keyboard to navigate a page, the viewport often does not show the active element. The second mistake is responsiveness. On some small screens (in terms of height), sections are cropped and navigation does not lead to the appropriate section. If I find a way to eliminate these bugs and maintain the animations, I will update the project but for now I'm satisfied with how it looks and what I achieve creating this.

💡Here's some new things I used or learned:

  • Share variables between JS and Sass - A way to synchronize CSS and JavaScript so that CSS is the source of truth and share values/variables with JavaScript.
  • Intersection Observer API - Intersection Observer API provides a way to asynchronously observe changes in the intersection of a target element with an ancestor element or with a top-level document's viewport.
  • preload images in JS - Preload lets you tell the browser about critical resources that you want to load.
  • prefers-reduced-motion - The prefers-reduced-motion is used to detect if a user has enabled a setting on their device to minimize the amount of non-essential motion. The setting is used to convey to the browser on the device that the user prefers an interface that removes, reduces, or replaces motion-based animations.

🛠️Build with: (can be found also in my others projects)

  • GSAP library - GSAP is a JavaScript library for building high-performance animations that work in every major browser.
  • Vite - Vite is a build tool that aims to provide a faster and leaner development experience for modern web projects. It consists of two major parts: a dev server, and build command that bundles your code with Rollup.
  • Sass CSS pre-processor. Sass is a stylesheet language that’s compiled to CSS. It allows to use variables, nested rules, mixins, functions, and more, all with a fully CSS-compatible syntax. Sass helps keep large stylesheets well-organized and makes it easy to share design within and across projects.
  • BEM - Block, Element, Modifier methodology, which is a popular naming convention for classes in HTML and CSS. BEM is useful when it comes to larger, more complex projects when code organization becomes crucial. The idea behind it is to speed up the development process, and ease the teamwork of developers by arranging CSS classes into independent modules.

❓Questions:

  • Any suggestions on how I can improve are welcome!

Community feedback

@suruaino

Posted

This is so nice, You did a very great job.

1

P
tediko 6,580

@tediko

Posted

@suruaino Thank you, I really appreciate it!

0

@Cyrus-Akwaboah-Emmanuel

Posted

This is amazing! The transitions are impressive.

1

P
tediko 6,580

@tediko

Posted

@Cyrus-Akwaboah-Emmanuel Thanks, that means a lot to me!

0

@Pepekid

Posted

Awesome!! It's an excellent project!! 👌

1

P
tediko 6,580

@tediko

Posted

@Pepekid Thank you Josep! Happy you liked it!

0
Malibongwe 210

@Mali-bee

Posted

My gosh, this is gorgeous🤩🥺!!! Well done👏🏾👏🏾👏🏾👏🏾

1

P
tediko 6,580

@tediko

Posted

@Mali-bee Thank you! I'm glad you liked it!

0
Mazhar1857 280

@Mazhar1857

Posted

The responsiveness of your application is not good. I have a 15-inch desktop, and your application is not fully visible; some parts get cropped. However, when I open it in inspection mode, it looks great.

1

P
tediko 6,580

@tediko

Posted

@Mazhar1857 Thanks for pointing that out! I can see it now and there is definitely a bug when window height is not high enough to display full content before animations and "parallax" effect kick in. I'll try to debug and fix it in a spare time.

0

Please log in to post a comment

Log in with GitHub
Discord logo

Join our Discord community

Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!

Join our Discord