mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-30 10:42:34 +05:30
Сделал немного более симпотную анимацию, что бы Эрик не пугался :)
This commit is contained in:
parent
1c9d4d9d03
commit
13b3a913a8
@ -7,6 +7,8 @@ import AppInfo from 'components/auth/AppInfo';
|
|||||||
|
|
||||||
import styles from './auth.scss';
|
import styles from './auth.scss';
|
||||||
|
|
||||||
|
const springConfig = [200, 20];
|
||||||
|
|
||||||
class AuthPage extends Component {
|
class AuthPage extends Component {
|
||||||
displayName = 'AuthPage';
|
displayName = 'AuthPage';
|
||||||
|
|
||||||
@ -30,7 +32,7 @@ class AuthPage extends Component {
|
|||||||
styles={{
|
styles={{
|
||||||
[path]: {
|
[path]: {
|
||||||
children,
|
children,
|
||||||
x: spring(0)
|
x: spring(0, springConfig)
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
@ -63,14 +65,14 @@ class AuthPage extends Component {
|
|||||||
willEnter(key, styles) {
|
willEnter(key, styles) {
|
||||||
return {
|
return {
|
||||||
...styles,
|
...styles,
|
||||||
x: spring(100)
|
x: spring(100, springConfig)
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
willLeave(key, styles) {
|
willLeave(key, styles) {
|
||||||
return {
|
return {
|
||||||
...styles,
|
...styles,
|
||||||
x: spring(-100)
|
x: spring(-100, springConfig)
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user