Skip to content

Latest commit

 

History

History
98 lines (74 loc) · 2.29 KB

README.md

File metadata and controls

98 lines (74 loc) · 2.29 KB

SoleCraft Customs Nike

Start at: May 23, 2022

Project Description

This is a landing page for an e-commerce website designed to showcase a mock project for a custom Nike shoe store. The goal of this project is to create a visually appealing and responsive landing page that highlights the concept of modern custom-designed Nike shoes, The page includes interactive elements and modern UI/UX design principles.

Screenshot

hero of the page products section product

Links

Built with

  • HTML
  • CSS
  • JS

What I learned

color-scheme meta tag

<meta name="color-scheme" content="dark light" />

aria-labelledby

<section aria-labelledby="Introduction to page"></section>

image lazy loading

<img src="#" alt="#" class="#" loading="lazy" />

CSS trices (filter - writing-mode)

img {
	filter: drop-shadow(0 20px 15px rgba(10, 10, 10, 0.9)) brightness(90%)
		contrast(110%) grayscale(10%);
}
h3 {
	writing-mode: vertical-rl;
}

js observer

let options = {
	root: null,
	threshold: 0,
	rootMargin: "",
};
let observer = new IntersectionObserver(function (entries, observer) {
	entries.forEach(function (entry) {
		if (entry.isIntersecting) {
			turnBrowne.classList.add("turn-browne");
		} else {
			turnBrowne.classList.remove("turn-browne");
		}
	});
}, options);

Continued development

  • html seo
  • css animation
  • js observer

Useful resources

Check out my latest previous articles:

Author

Follow me on: