animate.css

来源:互联网 发布:zabbix windows 安装 编辑:程序博客网 时间:2024/05/19 14:19

http://blog.csdn.net/code_for_free/article/details/52075129



1.通过animate.css来实现动画效果,如果页面要一直使用动画,分两种情况


a.无限次不间断的使用  $('#xxx').addClass('animated pulse infinite');

b.无限次有间断的使用


var int=self.setInterval("dh()",4000);

function dh(){
var img = $('#top_div').children('div').children('div').eq(1).children('.tool_unslider').children('img');
img.addClass('animated pulse');

setTimeout("removedh();",2000); 
}

function removedh(){
var img = $('#top_div').children('div').children('div').eq(1).children('.tool_unslider').children('img');
img.removeClass('animated pulse');
}

原创粉丝点击