is it posible to add anime.js in WordPress

It’s feasible! You could enqueue it using wp_enqueue_script function, like so:

add_action('wp_enqueue_scripts', 'your_them_function_to_load_files');

function your_them_function_to_load_files()
{
  wp_enqueue_script('handle_for_animejs', get_theme_file_uri('/js/anime.js'), '', "1.5", TRUE);
}

The code goes into the functions.php of your active theme.

WordPress wp_enqueue_script function

Leave a Comment