我已经按照一些说明从这个CDN入队Animate.css:https://cdnjs.com/libraries/animate.css/。我引用了第二个选项:https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css in my functions.php wordpress file.
当我在我的网站上加载页面时,引用似乎出现在我的页面中,但是当我将Animate.css类添加到图像或div时,它不会像预期的那样使元素动画化。
下面是我添加到functions.php文件中的代码:
function enqueue_my_custom_styles() {
wp_enqueue_style( 'animate-css', 'https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css', false );
}
add_action( 'wp_enqueue_scripts', 'enqueue_my_custom_styles' );
Here's a page where I've added the "pulse" class到下载图标/图像,但它不是脉冲。
2条答案
按热度按时间cgvd09ve1#
在
function.php
文件中执行以下操作:/** * Load Animate CSS from MaxCDN - the right way * */
要使动画工作,请将animated类添加到pulse类。如果你想让动画循环,还可以添加infinite类。
所以img标签应该有如下的类:
zhte4eai2#
链接标签有问题
/themes/course-builderhttps:cdnjs.cloudflare.com/