Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

animation_shortcode

// Add Shortcode
function animation_shortcodes( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
		),
		$atts,
		'animation'
	);

}
add_shortcode( 'animation', 'animation_shortcodes' );