[5d6f37a] | 1 | import { BackgroundType } from '../types';
|
---|
| 2 |
|
---|
| 3 | // ----------------------------------------------------------------------
|
---|
| 4 |
|
---|
| 5 | export const varBgColor = (props?: BackgroundType) => {
|
---|
| 6 | const colors = props?.colors || ['#19dcea', '#b22cff'];
|
---|
| 7 | const duration = props?.duration || 5;
|
---|
| 8 | const ease = props?.ease || 'linear';
|
---|
| 9 |
|
---|
| 10 | return {
|
---|
| 11 | animate: {
|
---|
| 12 | background: colors,
|
---|
| 13 | transition: { duration, ease },
|
---|
| 14 | },
|
---|
| 15 | };
|
---|
| 16 | };
|
---|
| 17 |
|
---|
| 18 | // ----------------------------------------------------------------------
|
---|
| 19 |
|
---|
| 20 | export const varBgKenburns = (props?: BackgroundType) => {
|
---|
| 21 | const duration = props?.duration || 5;
|
---|
| 22 | const ease = props?.ease || 'easeOut';
|
---|
| 23 |
|
---|
| 24 | return {
|
---|
| 25 | top: {
|
---|
| 26 | animate: {
|
---|
| 27 | scale: [1, 1.25],
|
---|
| 28 | y: [0, -15],
|
---|
| 29 | transformOrigin: ['50% 16%', '50% top'],
|
---|
| 30 | transition: { duration, ease },
|
---|
| 31 | },
|
---|
| 32 | },
|
---|
| 33 | bottom: {
|
---|
| 34 | animate: {
|
---|
| 35 | scale: [1, 1.25],
|
---|
| 36 | y: [0, 15],
|
---|
| 37 | transformOrigin: ['50% 84%', '50% bottom'],
|
---|
| 38 | transition: { duration, ease },
|
---|
| 39 | },
|
---|
| 40 | },
|
---|
| 41 | left: {
|
---|
| 42 | animate: {
|
---|
| 43 | scale: [1, 1.25],
|
---|
| 44 | x: [0, 20],
|
---|
| 45 | y: [0, 15],
|
---|
| 46 | transformOrigin: ['16% 50%', '0% left'],
|
---|
| 47 | transition: { duration, ease },
|
---|
| 48 | },
|
---|
| 49 | },
|
---|
| 50 | right: {
|
---|
| 51 | animate: {
|
---|
| 52 | scale: [1, 1.25],
|
---|
| 53 | x: [0, -20],
|
---|
| 54 | y: [0, -15],
|
---|
| 55 | transformOrigin: ['84% 50%', '0% right'],
|
---|
| 56 | transition: { duration, ease },
|
---|
| 57 | },
|
---|
| 58 | },
|
---|
| 59 | };
|
---|
| 60 | };
|
---|
| 61 |
|
---|
| 62 | // ----------------------------------------------------------------------
|
---|
| 63 |
|
---|
| 64 | export const varBgPan = (props?: BackgroundType) => {
|
---|
| 65 | const colors = props?.colors || ['#ee7752', '#e73c7e', '#23a6d5', '#23d5ab'];
|
---|
| 66 | const duration = props?.duration || 5;
|
---|
| 67 | const ease = props?.ease || 'linear';
|
---|
| 68 |
|
---|
| 69 | const gradient = (deg: number) => `linear-gradient(${deg}deg, ${colors})`;
|
---|
| 70 |
|
---|
| 71 | return {
|
---|
| 72 | top: {
|
---|
| 73 | animate: {
|
---|
| 74 | backgroundImage: [gradient(0), gradient(0)],
|
---|
| 75 | backgroundPosition: ['center 99%', 'center 1%'],
|
---|
| 76 | backgroundSize: ['100% 600%', '100% 600%'],
|
---|
| 77 | transition: { duration, ease },
|
---|
| 78 | },
|
---|
| 79 | },
|
---|
| 80 | right: {
|
---|
| 81 | animate: {
|
---|
| 82 | backgroundPosition: ['1% center', '99% center'],
|
---|
| 83 | backgroundImage: [gradient(270), gradient(270)],
|
---|
| 84 | backgroundSize: ['600% 100%', '600% 100%'],
|
---|
| 85 | transition: { duration, ease },
|
---|
| 86 | },
|
---|
| 87 | },
|
---|
| 88 | bottom: {
|
---|
| 89 | animate: {
|
---|
| 90 | backgroundImage: [gradient(0), gradient(0)],
|
---|
| 91 | backgroundPosition: ['center 1%', 'center 99%'],
|
---|
| 92 | backgroundSize: ['100% 600%', '100% 600%'],
|
---|
| 93 | transition: { duration, ease },
|
---|
| 94 | },
|
---|
| 95 | },
|
---|
| 96 | left: {
|
---|
| 97 | animate: {
|
---|
| 98 | backgroundPosition: ['99% center', '1% center'],
|
---|
| 99 | backgroundImage: [gradient(270), gradient(270)],
|
---|
| 100 | backgroundSize: ['600% 100%', '600% 100%'],
|
---|
| 101 | transition: { duration, ease },
|
---|
| 102 | },
|
---|
| 103 | },
|
---|
| 104 | };
|
---|
| 105 | };
|
---|