如何在我自己的CSS中使用导入的CSS?
如果我将:@import url("animate.css");导入到CSS文件中,那么如何使用它,例如:.xyz:hover{**fadeIn;)**} -fadeIn from animate.css
发布于 2015-02-27 18:19:39
我猜这是http://daneden.github.io/animate.css,根据文档,您可以使用js使用jQuery添加动画,例如:
$('.xyz').on('mouseover', function() {
$(this).addClass('fadeIn');
});https://stackoverflow.com/questions/28771533
复制相似问题