mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-30 02:32:58 +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';
|
||||
|
||||
const springConfig = [200, 20];
|
||||
|
||||
class AuthPage extends Component {
|
||||
displayName = 'AuthPage';
|
||||
|
||||
@ -30,7 +32,7 @@ class AuthPage extends Component {
|
||||
styles={{
|
||||
[path]: {
|
||||
children,
|
||||
x: spring(0)
|
||||
x: spring(0, springConfig)
|
||||
}
|
||||
}}
|
||||
>
|
||||
@ -63,14 +65,14 @@ class AuthPage extends Component {
|
||||
willEnter(key, styles) {
|
||||
return {
|
||||
...styles,
|
||||
x: spring(100)
|
||||
x: spring(100, springConfig)
|
||||
};
|
||||
}
|
||||
|
||||
willLeave(key, styles) {
|
||||
return {
|
||||
...styles,
|
||||
x: spring(-100)
|
||||
x: spring(-100, springConfig)
|
||||
};
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user