This commit is contained in:
ThatOneCalculator 2022-08-22 22:15:39 -07:00
parent 97eabe92db
commit b78b0a29e5
3 changed files with 3 additions and 11 deletions

View file

@ -1,6 +1,6 @@
{
"name": "calckey",
"version": "12.118.1-calc.12",
"version": "12.118.1-calc.12.1",
"codename": "aqua",
"repository": {
"type": "git",

View file

@ -274,7 +274,7 @@ if (isMobile.value) {
timelines.push('global');
}
if (Math.abs(xDiff) > Math.abs(yDiff) && Math.abs(xDiff) > 100) {
if (Math.abs(xDiff) > Math.abs(yDiff) && Math.abs(xDiff) > 50) {
if (xDiff < 0) {
if (src === 'home') {
next = 'global';

View file

@ -136,21 +136,13 @@ onMounted(() => {
if (window.innerWidth >= DESKTOP_THRESHOLD) isDesktop.value = true;
}, { passive: true });
let scrollPos = 0;
window.addEventListener('scroll', () => {
let windowY = window.scrollY;
postButton.style.transform = `scale(${windowY < scrollPos ? '1' : '0.3'})`;
scrollPos = windowY;
}, { passive: true });
function createScrollStopListener(element: Window, callback: TimerHandler, timeout: number): () => void {
let handle = 0;
const onScroll = () => {
if (handle) {
clearTimeout(handle);
}
postButton.style.transform = 'scale(0.3)';
postButton.style.transform = 'scale(0)';
handle = setTimeout(callback, timeout || 200);
};
element.addEventListener('scroll', onScroll, { passive: true });