improvements and fixes

pull/2/head
Midnight 3 years ago
parent faf92bcfba
commit 3657e2c47d

13
package-lock.json generated

@ -10,7 +10,8 @@
"dependencies": { "dependencies": {
"@fontsource/fira-mono": "^4.5.0", "@fontsource/fira-mono": "^4.5.0",
"@lukeed/uuid": "^2.0.0", "@lukeed/uuid": "^2.0.0",
"cookie": "^0.4.1" "cookie": "^0.4.1",
"vanilla-tilt": "^1.7.2"
}, },
"devDependencies": { "devDependencies": {
"@sveltejs/adapter-auto": "^1.0.0-next.18", "@sveltejs/adapter-auto": "^1.0.0-next.18",
@ -3160,6 +3161,11 @@
"integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==",
"dev": true "dev": true
}, },
"node_modules/vanilla-tilt": {
"version": "1.7.2",
"resolved": "https://registry.npmjs.org/vanilla-tilt/-/vanilla-tilt-1.7.2.tgz",
"integrity": "sha512-arf2wY2Y65rP6Zxve9PnUUnRl9nQ1KenPNae6QRaVq/PEvaIto2bC4jYirNJ19U7nLkzI1H9O+nYtcQlX7BTsA=="
},
"node_modules/vite": { "node_modules/vite": {
"version": "2.7.13", "version": "2.7.13",
"resolved": "https://registry.npmjs.org/vite/-/vite-2.7.13.tgz", "resolved": "https://registry.npmjs.org/vite/-/vite-2.7.13.tgz",
@ -5446,6 +5452,11 @@
"integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==",
"dev": true "dev": true
}, },
"vanilla-tilt": {
"version": "1.7.2",
"resolved": "https://registry.npmjs.org/vanilla-tilt/-/vanilla-tilt-1.7.2.tgz",
"integrity": "sha512-arf2wY2Y65rP6Zxve9PnUUnRl9nQ1KenPNae6QRaVq/PEvaIto2bC4jYirNJ19U7nLkzI1H9O+nYtcQlX7BTsA=="
},
"vite": { "vite": {
"version": "2.7.13", "version": "2.7.13",
"resolved": "https://registry.npmjs.org/vite/-/vite-2.7.13.tgz", "resolved": "https://registry.npmjs.org/vite/-/vite-2.7.13.tgz",

@ -34,7 +34,8 @@
"dependencies": { "dependencies": {
"@fontsource/fira-mono": "^4.5.0", "@fontsource/fira-mono": "^4.5.0",
"@lukeed/uuid": "^2.0.0", "@lukeed/uuid": "^2.0.0",
"cookie": "^0.4.1" "cookie": "^0.4.1",
"vanilla-tilt": "^1.7.2"
}, },
"type": "module" "type": "module"
} }

@ -1,11 +1,20 @@
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,900;1,100;1,500&display=swap"); @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,900;1,100;1,500&display=swap');
@tailwind base; @tailwind base;
@tailwind components; @tailwind components;
@tailwind utilities; @tailwind utilities;
@font-face {
font-family: 'Baron';
src: url('/fonts/BaronNeue-Black.otf');
}
:root { :root {
font-family: "Roboto", sans-serif; font-family: 'Roboto', sans-serif;
}
.baron {
font-family: 'Baron', sans-serif;
} }
#svelte { #svelte {

@ -9,5 +9,6 @@
</head> </head>
<body> <body>
<div>%svelte.body%</div> <div>%svelte.body%</div>
<script type="text/javascript" src="/tilt.js"></script>
</body> </body>
</html> </html>

@ -13,5 +13,5 @@
class="text-xs flex flex-col justify-center hover:scale-110 duration-150" class="text-xs flex flex-col justify-center hover:scale-110 duration-150"
> >
<span class="text-4xl ">{icon}</span> <span class="text-4xl ">{icon}</span>
<span class="text-gray-600 dark:text-gray-300 font-light">{text}</span> <span class="text-gray-600 dark:text-gray-300 font-light text-center">{text}</span>
</a> </a>

@ -3,7 +3,7 @@
</script> </script>
<main <main
class="bg-white dark:bg-black dark:bg-opacity-50 text-black dark:text-white shadow z-50" class="bg-white dark:bg-black dark:bg-opacity-50 text-black dark:text-white shadow z-40"
> >
<section class="container"> <section class="container">
<Nav /> <Nav />

@ -46,6 +46,10 @@
src={randomBannerPic} src={randomBannerPic}
alt="mid" alt="mid"
class="rounded-xl shadow-xl w-full" class="rounded-xl shadow-xl w-full"
data-tilt data-tilt-max="10" data-tilt-speed="200" data-tilt-perspective="1000"
data-tilt-glare data-tilt-max-glare="0.8"
data-tilt-reverse="true"
data-tilt-reset="false"
/> />
</div> </div>
</main> </main>

@ -1,7 +1,8 @@
<script> <script>
export let color; export let color = "bg-gradient-to-br from-gray-200 to-gray-400 dark:bg-gradient-to-br dark:from-gray-500 dark:to-gray-700";
export let rotation; export let rotation = "";
export let buttonText; export let buttonText;
export let buttonRedirect = "";
export let buttonHref; export let buttonHref;
let skew; let skew;
@ -16,14 +17,15 @@
} }
</script> </script>
<div class="flex flex-col gap-2 w-full relative py-8 px-8 lg:px-12 lg:py-10"> <div class="flex flex-col gap-2 w-full relative py-8 px-8 lg:px-12 lg:py-10 group hover:scale-105 hover:-translate-y-5 duration-300">
<div <div
class="{skew} {color} absolute inset-0 z-0 w-full shadow-xl rounded-xl flex flex-col justify-end" class="{skew} {color} absolute inset-0 z-0 w-full shadow-lg rounded-xl flex flex-col justify-end group-hover:shadow-2xl duration-300"
> >
{#if buttonText != null && buttonHref != null} {#if buttonText != null && buttonHref != null}
<a <a
href={buttonHref} href={buttonHref}
class="rounded-b-xl bg-white bg-opacity-50 p-5 hover:bg-opacity-100 duration-150 text-base lg:text-lg font-bold dark:text-black" target={buttonRedirect}
class="rounded-b-xl bg-white bg-opacity-50 p-5 hover:bg-opacity-100 duration-150 text-base lg:text-lg font-bold dark:text-black z-40"
> >
<span class="p-5 z-10">{buttonText}</span> <span class="p-5 z-10">{buttonText}</span>
</a> </a>
@ -37,4 +39,4 @@
<span class="h-16 lg:h-10" /> <span class="h-16 lg:h-10" />
{/if} {/if}
</div> </div>
</div> </div>

@ -6,4 +6,27 @@
<title>Home</title> <title>Home</title>
</svelte:head> </svelte:head>
<main /> <main>
<div class="relative mt-10 h-screen">
<section class="absolute inset-0 triangle h-screen mx-auto bg-gradient-to-t from-amber-500 to-red-600 z-0"></section>
<div class="absolute inset-0 bg-cover h-96 rounded-xl -rotate-2 mt-20 bg-center w-8/12 mx-auto shadow-2xl" style="background-image: url('/esu/banner.jpg')">
</div>
<div class="absolute h-96 inset-0 flex flex-col justify-center items-center mt-20">
<h1 class="baron text-white text-9xl drop-shadow-xl">easter system <br/> <h2 class="baron text-white text-7xl ml-1">UNIVERSE</h2></h1>
</div>
</div>
<div>
<section class="h-screen bg-amber-500"></section>
</div>
</main>
<style>
.triangle {
clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
</style>

@ -32,12 +32,11 @@
<div class="container px-5 flex flex-col gap-10 justify-center"> <div class="container px-5 flex flex-col gap-10 justify-center">
<h2 class="text-2xl font-bold italic">Places I'm a part of</h2> <h2 class="text-2xl font-bold italic">Places I'm a part of</h2>
<div class="flex flex-col lg:flex-row gap-5 justify-between"> <div class="grid grid-cols-1 lg:grid-cols-3 gap-10 justify-between">
<Card <Card
buttonHref="https://puppypride.social" buttonHref="https://puppypride.social"
buttonText="🌐 Visit Puppy Pride" buttonText="🌐 Visit Puppy Pride"
rotation="left" color="bg-gradient-to-br from-blue-300 to-blue-400 dark:bg-gradient-to-br dark:from-blue-700 dark:to-blue-900"
color="bg-blue-300 dark:bg-blue-700"
> >
<h3 <h3
class="text-xl font-bold inline-flex items-center gap-3" class="text-xl font-bold inline-flex items-center gap-3"
@ -71,8 +70,7 @@
<Card <Card
buttonHref="https://discord.gg/ygw4DNnKvt" buttonHref="https://discord.gg/ygw4DNnKvt"
buttonText="🚪 Join the Discord" buttonText="🚪 Join the Discord"
rotation="left" color="bg-gradient-to-br from-orange-300 to-orange-400 dark:bg-gradient-to-br dark:from-orange-700 dark:to-orange-900"
color="bg-orange-300 dark:bg-orange-800"
> >
<h3 <h3
class="text-xl font-bold inline-flex items-center gap-3" class="text-xl font-bold inline-flex items-center gap-3"
@ -101,8 +99,6 @@
<Card <Card
buttonHref="https://dubbelnull.com" buttonHref="https://dubbelnull.com"
buttonText="➡️ Go to DubbelNull.com" buttonText="➡️ Go to DubbelNull.com"
rotation="left"
color="bg-gray-300 dark:bg-gray-700"
> >
<h3 <h3
class="text-xl font-bold inline-flex items-center gap-3" class="text-xl font-bold inline-flex items-center gap-3"
@ -125,9 +121,47 @@
We focus on efficiency in communication and satisfaction We focus on efficiency in communication and satisfaction
of the end result. of the end result.
<br /><br /> <br /><br />
We are also looking into expanding into the SaaS business, We are also expanding into the SaaS business with our own Cloud Storage solution built on top
notably with our own Cloud Storage solution built on top of Nextcloud and a communication platform in the works called Flame.
of Nextcloud, and a chatting app in the works called Flame. </p>
</Card>
</div>
<br class="my-5"/>
<h2 class="text-2xl font-bold italic">Things I built</h2>
<div class="grid grid-cols-1 lg:grid-cols-3 gap-10 justify-between">
<Card
buttonHref="https://sivkyne.xyz"
buttonRedirect="_blank"
buttonText="🌐 Visit Website"
>
<h3
class="text-xl font-bold inline-flex items-center gap-3"
>
<img
src="/sivkyne.png"
class="h-8 rounded-full"
alt="siv kyne"
/> Siv Kyne
</h3>
<p class="text-sm text-gray-800 dark:text-gray-100">
I developed this website in exchange for artistic goods.
It is hosted on Vercel and built on top of SvelteKit.
It features a fully mobile compatible design that catches your eye from the moment you visit the homepage.
</p>
</Card>
<Card
>
<h3
class="text-xl font-bold inline-flex items-center gap-3"
>
More here soon...
</h3>
<p class="text-sm text-gray-800 dark:text-gray-100">
I am still working on this website, and adding my previous works to this as I go. I have done many more things than this though!
</p> </p>
</Card> </Card>
</div> </div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 730 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 352 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 113 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

@ -0,0 +1,540 @@
var VanillaTilt = (function () {
'use strict';
/**
* Created by Sergiu Șandor (micku7zu) on 1/27/2017.
* Original idea: https://github.com/gijsroge/tilt.js
* MIT License.
* Version 1.7.2
*/
class VanillaTilt {
constructor(element, settings = {}) {
if (!(element instanceof Node)) {
throw "Can't initialize VanillaTilt because " + element + ' is not a Node.';
}
this.width = null;
this.height = null;
this.clientWidth = null;
this.clientHeight = null;
this.left = null;
this.top = null;
// for Gyroscope sampling
this.gammazero = null;
this.betazero = null;
this.lastgammazero = null;
this.lastbetazero = null;
this.transitionTimeout = null;
this.updateCall = null;
this.event = null;
this.updateBind = this.update.bind(this);
this.resetBind = this.reset.bind(this);
this.element = element;
this.settings = this.extendSettings(settings);
this.reverse = this.settings.reverse ? -1 : 1;
this.glare = VanillaTilt.isSettingTrue(this.settings.glare);
this.glarePrerender = VanillaTilt.isSettingTrue(this.settings['glare-prerender']);
this.fullPageListening = VanillaTilt.isSettingTrue(this.settings['full-page-listening']);
this.gyroscope = VanillaTilt.isSettingTrue(this.settings.gyroscope);
this.gyroscopeSamples = this.settings.gyroscopeSamples;
this.elementListener = this.getElementListener();
if (this.glare) {
this.prepareGlare();
}
if (this.fullPageListening) {
this.updateClientSize();
}
this.addEventListeners();
this.reset();
this.updateInitialPosition();
}
static isSettingTrue(setting) {
return setting === '' || setting === true || setting === 1;
}
/**
* Method returns element what will be listen mouse events
* @return {Node}
*/
getElementListener() {
if (this.fullPageListening) {
return window.document;
}
if (typeof this.settings['mouse-event-element'] === 'string') {
const mouseEventElement = document.querySelector(this.settings['mouse-event-element']);
if (mouseEventElement) {
return mouseEventElement;
}
}
if (this.settings['mouse-event-element'] instanceof Node) {
return this.settings['mouse-event-element'];
}
return this.element;
}
/**
* Method set listen methods for this.elementListener
* @return {Node}
*/
addEventListeners() {
this.onMouseEnterBind = this.onMouseEnter.bind(this);
this.onMouseMoveBind = this.onMouseMove.bind(this);
this.onMouseLeaveBind = this.onMouseLeave.bind(this);
this.onWindowResizeBind = this.onWindowResize.bind(this);
this.onDeviceOrientationBind = this.onDeviceOrientation.bind(this);
this.elementListener.addEventListener('mouseenter', this.onMouseEnterBind);
this.elementListener.addEventListener('mouseleave', this.onMouseLeaveBind);
this.elementListener.addEventListener('mousemove', this.onMouseMoveBind);
if (this.glare || this.fullPageListening) {
window.addEventListener('resize', this.onWindowResizeBind);
}
if (this.gyroscope) {
window.addEventListener('deviceorientation', this.onDeviceOrientationBind);
}
}
/**
* Method remove event listeners from current this.elementListener
*/
removeEventListeners() {
this.elementListener.removeEventListener('mouseenter', this.onMouseEnterBind);
this.elementListener.removeEventListener('mouseleave', this.onMouseLeaveBind);
this.elementListener.removeEventListener('mousemove', this.onMouseMoveBind);
if (this.gyroscope) {
window.removeEventListener('deviceorientation', this.onDeviceOrientationBind);
}
if (this.glare || this.fullPageListening) {
window.removeEventListener('resize', this.onWindowResizeBind);
}
}
destroy() {
clearTimeout(this.transitionTimeout);
if (this.updateCall !== null) {
cancelAnimationFrame(this.updateCall);
}
this.reset();
this.removeEventListeners();
this.element.vanillaTilt = null;
delete this.element.vanillaTilt;
this.element = null;
}
onDeviceOrientation(event) {
if (event.gamma === null || event.beta === null) {
return;
}
this.updateElementPosition();
if (this.gyroscopeSamples > 0) {
this.lastgammazero = this.gammazero;
this.lastbetazero = this.betazero;
if (this.gammazero === null) {
this.gammazero = event.gamma;
this.betazero = event.beta;
} else {
this.gammazero = (event.gamma + this.lastgammazero) / 2;
this.betazero = (event.beta + this.lastbetazero) / 2;
}
this.gyroscopeSamples -= 1;
}
const totalAngleX = this.settings.gyroscopeMaxAngleX - this.settings.gyroscopeMinAngleX;
const totalAngleY = this.settings.gyroscopeMaxAngleY - this.settings.gyroscopeMinAngleY;
const degreesPerPixelX = totalAngleX / this.width;
const degreesPerPixelY = totalAngleY / this.height;
const angleX = event.gamma - (this.settings.gyroscopeMinAngleX + this.gammazero);
const angleY = event.beta - (this.settings.gyroscopeMinAngleY + this.betazero);
const posX = angleX / degreesPerPixelX;
const posY = angleY / degreesPerPixelY;
if (this.updateCall !== null) {
cancelAnimationFrame(this.updateCall);
}
this.event = {
clientX: posX + this.left,
clientY: posY + this.top
};
this.updateCall = requestAnimationFrame(this.updateBind);
}
onMouseEnter() {
this.updateElementPosition();
this.element.style.willChange = 'transform';
this.setTransition();
}
onMouseMove(event) {
if (this.updateCall !== null) {
cancelAnimationFrame(this.updateCall);
}
this.event = event;
this.updateCall = requestAnimationFrame(this.updateBind);
}
onMouseLeave() {
this.setTransition();
if (this.settings.reset) {
requestAnimationFrame(this.resetBind);
}
}
reset() {
this.event = {
clientX: this.left + this.width / 2,
clientY: this.top + this.height / 2
};
if (this.element && this.element.style) {
this.element.style.transform =
`perspective(${this.settings.perspective}px) ` +
`rotateX(0deg) ` +
`rotateY(0deg) ` +
`scale3d(1, 1, 1)`;
}
this.resetGlare();
}
resetGlare() {
if (this.glare) {
this.glareElement.style.transform = 'rotate(180deg) translate(-50%, -50%)';
this.glareElement.style.opacity = '0';
}
}
updateInitialPosition() {
if (this.settings.startX === 0 && this.settings.startY === 0) {
return;
}
this.onMouseEnter();
if (this.fullPageListening) {
this.event = {
clientX:
((this.settings.startX + this.settings.max) / (2 * this.settings.max)) *
this.clientWidth,
clientY:
((this.settings.startY + this.settings.max) / (2 * this.settings.max)) *
this.clientHeight
};
} else {
this.event = {
clientX:
this.left +
((this.settings.startX + this.settings.max) / (2 * this.settings.max)) * this.width,
clientY:
this.top +
((this.settings.startY + this.settings.max) / (2 * this.settings.max)) * this.height
};
}
let backupScale = this.settings.scale;
this.settings.scale = 1;
this.update();
this.settings.scale = backupScale;
this.resetGlare();
}
getValues() {
let x, y;
if (this.fullPageListening) {
x = this.event.clientX / this.clientWidth;
y = this.event.clientY / this.clientHeight;
} else {
x = (this.event.clientX - this.left) / this.width;
y = (this.event.clientY - this.top) / this.height;
}
x = Math.min(Math.max(x, 0), 1);
y = Math.min(Math.max(y, 0), 1);
let tiltX = (this.reverse * (this.settings.max - x * this.settings.max * 2)).toFixed(2);
let tiltY = (this.reverse * (y * this.settings.max * 2 - this.settings.max)).toFixed(2);
let angle =
Math.atan2(
this.event.clientX - (this.left + this.width / 2),
-(this.event.clientY - (this.top + this.height / 2))
) *
(180 / Math.PI);
return {
tiltX: tiltX,
tiltY: tiltY,
percentageX: x * 100,
percentageY: y * 100,
angle: angle
};
}
updateElementPosition() {
let rect = this.element.getBoundingClientRect();
this.width = this.element.offsetWidth;
this.height = this.element.offsetHeight;
this.left = rect.left;
this.top = rect.top;
}
update() {
let values = this.getValues();
this.element.style.transform =
'perspective(' +
this.settings.perspective +
'px) ' +
'rotateX(' +
(this.settings.axis === 'x' ? 0 : values.tiltY) +
'deg) ' +
'rotateY(' +
(this.settings.axis === 'y' ? 0 : values.tiltX) +
'deg) ' +
'scale3d(' +
this.settings.scale +
', ' +
this.settings.scale +
', ' +
this.settings.scale +
')';
if (this.glare) {
this.glareElement.style.transform = `rotate(${values.angle}deg) translate(-50%, -50%)`;
this.glareElement.style.opacity = `${
(values.percentageY * this.settings['max-glare']) / 100
}`;
}
this.element.dispatchEvent(
new CustomEvent('tiltChange', {
detail: values
})
);
this.updateCall = null;
}
/**
* Appends the glare element (if glarePrerender equals false)
* and sets the default style
*/
prepareGlare() {
// If option pre-render is enabled we assume all html/css is present for an optimal glare effect.
if (!this.glarePrerender) {
// Create glare element
const jsTiltGlare = document.createElement('div');
jsTiltGlare.classList.add('js-tilt-glare');
const jsTiltGlareInner = document.createElement('div');
jsTiltGlareInner.classList.add('js-tilt-glare-inner');
jsTiltGlare.appendChild(jsTiltGlareInner);
this.element.appendChild(jsTiltGlare);
}
this.glareElementWrapper = this.element.querySelector('.js-tilt-glare');
this.glareElement = this.element.querySelector('.js-tilt-glare-inner');
if (this.glarePrerender) {
return;
}
Object.assign(this.glareElementWrapper.style, {
position: 'absolute',
top: '0',
left: '0',
width: '100%',
height: '100%',
overflow: 'hidden',
'pointer-events': 'none'
});
Object.assign(this.glareElement.style, {
position: 'absolute',
top: '50%',
left: '50%',
'pointer-events': 'none',
'background-image': `linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%)`,
transform: 'rotate(180deg) translate(-50%, -50%)',
'transform-origin': '0% 0%',
opacity: '0'
});
this.updateGlareSize();
}
updateGlareSize() {
if (this.glare) {
const glareSize =
(this.element.offsetWidth > this.element.offsetHeight
? this.element.offsetWidth
: this.element.offsetHeight) * 2;
Object.assign(this.glareElement.style, {
width: `${glareSize}px`,
height: `${glareSize}px`
});
}
}
updateClientSize() {
this.clientWidth =
window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
this.clientHeight =
window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;
}
onWindowResize() {
this.updateGlareSize();
this.updateClientSize();
}
setTransition() {
clearTimeout(this.transitionTimeout);
this.element.style.transition = this.settings.speed + 'ms ' + this.settings.easing;
if (this.glare)
this.glareElement.style.transition = `opacity ${this.settings.speed}ms ${this.settings.easing}`;
this.transitionTimeout = setTimeout(() => {
this.element.style.transition = '';
if (this.glare) {
this.glareElement.style.transition = '';
}
}, this.settings.speed);
}
/**
* Method return patched settings of instance
* @param {boolean} settings.reverse - reverse the tilt direction
* @param {number} settings.max - max tilt rotation (degrees)
* @param {startX} settings.startX - the starting tilt on the X axis, in degrees. Default: 0
* @param {startY} settings.startY - the starting tilt on the Y axis, in degrees. Default: 0
* @param {number} settings.perspective - Transform perspective, the lower the more extreme the tilt gets
* @param {string} settings.easing - Easing on enter/exit
* @param {number} settings.scale - 2 = 200%, 1.5 = 150%, etc..
* @param {number} settings.speed - Speed of the enter/exit transition
* @param {boolean} settings.transition - Set a transition on enter/exit
* @param {string|null} settings.axis - What axis should be disabled. Can be X or Y
* @param {boolean} settings.glare - What axis should be disabled. Can be X or Y
* @param {number} settings.max-glare - the maximum "glare" opacity (1 = 100%, 0.5 = 50%)
* @param {boolean} settings.glare-prerender - false = VanillaTilt creates the glare elements for you, otherwise
* @param {boolean} settings.full-page-listening - If true, parallax effect will listen to mouse move events on the whole document, not only the selected element
* @param {string|object} settings.mouse-event-element - String selector or link to HTML-element what will be listen mouse events
* @param {boolean} settings.reset - false = If the tilt effect has to be reset on exit
* @param {gyroscope} settings.gyroscope - Enable tilting by deviceorientation events
* @param {gyroscopeSensitivity} settings.gyroscopeSensitivity - Between 0 and 1 - The angle at which max tilt position is reached. 1 = 90deg, 0.5 = 45deg, etc..
* @param {gyroscopeSamples} settings.gyroscopeSamples - How many gyroscope moves to decide the starting position.
*/
extendSettings(settings) {
let defaultSettings = {
reverse: false,
max: 15,
startX: 0,
startY: 0,
perspective: 1000,
easing: 'cubic-bezier(.03,.98,.52,.99)',
scale: 1,
speed: 300,
transition: true,
axis: null,
glare: false,
'max-glare': 1,
'glare-prerender': false,
'full-page-listening': false,
'mouse-event-element': null,
reset: true,
gyroscope: true,
gyroscopeMinAngleX: -45,
gyroscopeMaxAngleX: 45,
gyroscopeMinAngleY: -45,
gyroscopeMaxAngleY: 45,
gyroscopeSamples: 10
};
let newSettings = {};
for (var property in defaultSettings) {
if (property in settings) {
newSettings[property] = settings[property];
} else if (this.element.hasAttribute('data-tilt-' + property)) {
let attribute = this.element.getAttribute('data-tilt-' + property);
try {
newSettings[property] = JSON.parse(attribute);
} catch (e) {
newSettings[property] = attribute;
}
} else {
newSettings[property] = defaultSettings[property];
}
}
return newSettings;
}
static init(elements, settings) {
if (elements instanceof Node) {
elements = [elements];
}
if (elements instanceof NodeList) {
elements = [].slice.call(elements);
}
if (!(elements instanceof Array)) {
return;
}
elements.forEach((element) => {
if (!('vanillaTilt' in element)) {
element.vanillaTilt = new VanillaTilt(element, settings);
}
});
}
}
if (typeof document !== 'undefined') {
/* expose the class to window */
window.VanillaTilt = VanillaTilt;
/**
* Auto load
*/
VanillaTilt.init(document.querySelectorAll('[data-tilt]'));
}
return VanillaTilt;
})();

@ -5,7 +5,11 @@ module.exports = {
container: { container: {
center: true center: true
}, },
extend: {} extend: {
borderWidth: {
screen: '500px'
}
}
}, },
plugins: [] plugins: []
}; };

Loading…
Cancel
Save