Put simpleParallax and modify logo.php to merge

This commit is contained in:
2020-01-04 18:18:39 +01:00
parent ca6e77ebb0
commit fc231ee294
69 changed files with 3660 additions and 23 deletions

View File

@@ -0,0 +1,15 @@
declare module 'simple-parallax-js' {
interface IParallaxSettings {
orientation?: 'up' | 'down' | 'left' | 'right';
scale?: number;
overflow?: boolean;
delay?: number;
transition?: string;
breakpoint?: number;
}
export default class SimpleParallax {
constructor(images: Element | Element[], settings?: IParallaxSettings);
public destroy: () => void;
}
}