2018-03-21 17:38:20 +01:00
|
|
|
export const FAVORITE_ANIMATION = [
|
|
|
|
{
|
|
|
|
properties: [
|
2018-08-30 06:42:57 +02:00
|
|
|
{ transform: 'scale(1)' },
|
|
|
|
{ transform: 'scale(2)' },
|
|
|
|
{ transform: 'scale(1)' }
|
2018-03-21 17:38:20 +01:00
|
|
|
],
|
|
|
|
options: {
|
2018-03-23 04:19:07 +01:00
|
|
|
duration: 333,
|
2018-03-21 17:38:20 +01:00
|
|
|
easing: 'ease-in-out'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
properties: [
|
2018-08-30 06:42:57 +02:00
|
|
|
{ fill: 'var(--action-button-fill-color)' },
|
|
|
|
{ fill: 'var(--action-button-fill-color-pressed)' }
|
2018-03-21 17:38:20 +01:00
|
|
|
],
|
|
|
|
options: {
|
2018-03-23 04:19:07 +01:00
|
|
|
duration: 333,
|
2018-03-21 17:38:20 +01:00
|
|
|
easing: 'linear'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
export const REBLOG_ANIMATION = FAVORITE_ANIMATION
|
2018-03-23 04:18:17 +01:00
|
|
|
|
|
|
|
export const FOLLOW_BUTTON_ANIMATION = [
|
|
|
|
{
|
|
|
|
properties: [
|
2018-08-30 06:42:57 +02:00
|
|
|
{ transform: 'scale(1)' },
|
|
|
|
{ transform: 'scale(2)' },
|
|
|
|
{ transform: 'scale(1)' }
|
2018-03-23 04:18:17 +01:00
|
|
|
],
|
|
|
|
options: {
|
2018-03-23 04:19:07 +01:00
|
|
|
duration: 333,
|
2018-03-23 04:18:17 +01:00
|
|
|
easing: 'ease-in-out'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|