rework portfolio

This commit is contained in:
codepupper 2020-02-12 10:42:27 +01:00
parent 0adfc08c1a
commit c86bc19515
9 changed files with 427 additions and 16 deletions

View file

@ -74,3 +74,115 @@ const next = () => {
};
next();
// by
// abubakersaeed.netlify.com | @AbubakerSaeed96
// ============================================
// Inspiration:
// Tilt.js: https://gijsroge.github.io/tilt.js/
// Andy Merskin's parallax depth cards pen: https://codepen.io/andymerskin/full/XNMWvQ/
// Thank You for Viewing
class parallaxTiltEffect {
constructor({ element, tiltEffect }) {
this.element = element;
this.container = this.element.querySelector('.container');
this.size = [ 300, 360 ];
[ this.w, this.h ] = this.size;
this.tiltEffect = tiltEffect;
this.mouseOnComponent = false;
this.handleMouseMove = this.handleMouseMove.bind(this);
this.handleMouseEnter = this.handleMouseEnter.bind(this);
this.handleMouseLeave = this.handleMouseLeave.bind(this);
this.defaultStates = this.defaultStates.bind(this);
this.setProperty = this.setProperty.bind(this);
this.init = this.init.bind(this);
this.init();
}
handleMouseMove(event) {
const { offsetX, offsetY } = event;
let X;
let Y;
if (this.tiltEffect === 'reverse') {
X = (offsetX - this.w / 2) / 3 / 3;
Y = -(offsetY - this.h / 2) / 3 / 3;
} else if (this.tiltEffect === 'normal') {
X = -(offsetX - this.w / 2) / 3 / 3;
Y = (offsetY - this.h / 2) / 3 / 3;
}
this.setProperty('--rY', X.toFixed(2));
this.setProperty('--rX', Y.toFixed(2));
this.setProperty('--bY', 80 - (X / 4).toFixed(2) + '%');
this.setProperty('--bX', 50 - (Y / 4).toFixed(2) + '%');
}
handleMouseEnter() {
this.mouseOnComponent = true;
this.container.classList.add('container--active');
}
handleMouseLeave() {
this.mouseOnComponent = false;
this.defaultStates();
}
defaultStates() {
this.container.classList.remove('container--active');
this.setProperty('--rY', 0);
this.setProperty('--rX', 0);
this.setProperty('--bY', '80%');
this.setProperty('--bX', '50%');
}
setProperty(p, v) {
return this.container.style.setProperty(p, v);
}
init() {
this.element.addEventListener('mousemove', this.handleMouseMove);
this.element.addEventListener('mouseenter', this.handleMouseEnter);
this.element.addEventListener('mouseleave', this.handleMouseLeave);
}
}
const $ = (e) => document.querySelector(e);
const WrapPortfolio = new parallaxTiltEffect({
element: $('.wrap--portfolio'),
tiltEffect: 'reverse'
});
const WrapHomepage = new parallaxTiltEffect({
element: $('.wrap--homepage'),
tiltEffect: 'normal'
});
const WrapYugen = new parallaxTiltEffect({
element: $('.wrap--yugen'),
tiltEffect: 'reverse'
});
const WrapThaldrin = new parallaxTiltEffect({
element: $('.wrap--thaldrin'),
tiltEffect: 'reverse'
});
const WrapKaito = new parallaxTiltEffect({
element: $('.wrap--kaito'),
tiltEffect: 'reverse'
});
const WrapYiff = new parallaxTiltEffect({
element: $('.wrap--yiff'),
tiltEffect: 'reverse'
});