Skip to content

Instantly share code, notes, and snippets.

@MWalid
Last active August 12, 2018 16:47
Show Gist options
  • Save MWalid/186d4c7ce5ab70d2373a963ac7625104 to your computer and use it in GitHub Desktop.
Save MWalid/186d4c7ce5ab70d2373a963ac7625104 to your computer and use it in GitHub Desktop.
Animate CSS Animation List PHP Array
<?php
return [
'bounce' => 'Bounce',
'flash' => 'Flash',
'pulse' => 'Pulse',
'rubberBand' => 'Rubber band',
'shake' => 'Shake',
'headShake' => 'Head shake',
'swing' => 'Swing',
'tada' => 'Tada',
'wobble' => 'Wobble',
'jello' => 'Jello',
'bounceIn' => 'Bounce in',
'bounceInDown' => 'Bounce in down',
'bounceInLeft' => 'Bounce in left',
'bounceInRight' => 'Bounce in right',
'bounceInUp' => 'Bounce in up',
'bounceOut' => 'Bounce out',
'bounceOutDown' => 'Bounce out down',
'bounceOutLeft' => 'Bounce out left',
'bounceOutRight' => 'Bounce out right',
'bounceOutUp' => 'Bounce out up',
'fadeIn' => 'Fade in',
'fadeInDown' => 'Fade in down',
'fadeInDownBig' => 'Fade in down big',
'fadeInLeft' => 'Fade in left',
'fadeInLeftBig' => 'Fade in left big',
'fadeInRight' => 'Fade in right',
'fadeInRightBig' => 'Fade in right big',
'fadeInUp' => 'Fade in up',
'fadeInUpBig' => 'Fade in up big',
'fadeOut' => 'Fade out',
'fadeOutDown' => 'Fade out down',
'fadeOutDownBig' => 'Fade out down big',
'fadeOutLeft' => 'Fade out left',
'fadeOutLeftBig' => 'Fade out left big',
'fadeOutRight' => 'Fade out right',
'fadeOutRightBig' => 'Fade out right big',
'fadeOutUp' => 'Fade out up',
'fadeOutUpBig' => 'Fade out up big',
'flipInX' => 'Flip in x',
'flipInY' => 'Flip in y',
'flipOutX' => 'Flip out x',
'flipOutY' => 'Flip out y',
'lightSpeedIn' => 'Light speed in',
'lightSpeedOut' => 'Light speed out',
'rotateIn' => 'Rotate in',
'rotateInDownLeft' => 'Rotate in down left',
'rotateInDownRight' => 'Rotate in down right',
'rotateInUpLeft' => 'Rotate in up left',
'rotateInUpRight' => 'Rotate in up right',
'rotateOut' => 'Rotate out',
'rotateOutDownLeft' => 'Rotate out down left',
'rotateOutDownRight' => 'Rotate out down right',
'rotateOutUpLeft' => 'Rotate out up left',
'rotateOutUpRight' => 'Rotate out up right',
'hinge' => 'Hinge',
'jackInTheBox' => 'Jack in the box',
'rollIn' => 'Roll in',
'rollOut' => 'Roll out',
'zoomIn' => 'Zoom in',
'zoomInDown' => 'Zoom in down',
'zoomInLeft' => 'Zoom in left',
'zoomInRight' => 'Zoom in right',
'zoomInUp' => 'Zoom in up',
'zoomOut' => 'Zoom out',
'zoomOutDown' => 'Zoom out down',
'zoomOutLeft' => 'Zoom out left',
'zoomOutRight' => 'Zoom out right',
'zoomOutUp' => 'Zoom out up',
'slideInDown' => 'Slide in down',
'slideInLeft' => 'Slide in left',
'slideInRight' => 'Slide in right',
'slideInUp' => 'Slide in up',
'slideOutDown' => 'Slide out down',
'slideOutLeft' => 'Slide out left',
'slideOutRight' => 'Slide out right',
'slideOutUp' => 'Slide out up',
'heartBeat' => 'Heart beat',
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment