Skip to content
This repository has been archived by the owner on Mar 17, 2020. It is now read-only.

Latest commit

 

History

History
54 lines (40 loc) · 1.29 KB

README.md

File metadata and controls

54 lines (40 loc) · 1.29 KB

Project title 🚀

Site for photographer Andrew Garnicz-Garnicki. Project's has three pages: home,pictures and videos.

Motivation 🎉

This is non-profit site for my friend Andrew. Primary goal for this project was to learn how to work with client and pratice diffrent technologies.I learned also how to dealing with problems.

Screenshots 📺

Design Design

Tech/framework used 🔧

Code Example/Issues 🔍

My biggest issue was to implement mouse wheel feature. I found prepared function for that.

function throttle(func, limit) {
    let inThrottle;
    return function() {
      const args = arguments;
      const context = this;
      if (!inThrottle) {
        func.apply(context, args);
        inThrottle = true;
        setTimeout(() => (inThrottle = false), limit);
      }
    };
  }

Installation 📍

npm install 

Credits 👏

https://tympanus.net/codrops/ helps me with many problems.

License 🔱

Under license (MIT, Apache etc)

MIT © Olaf Sulich