【发布时间】:2012-01-27 03:13:59
【问题描述】:
这是网站:http://test.designpro.digingage.com/
在我添加脉动图像之前,中间滚动图像有效。这是我的脉动图像代码:
$(document).ready(function() {
function pulsate() {
$(".phone").animate({ opacity: 0.2 }, 1200, 'linear')
.animate({ opacity: 1 }, 1200, 'linear', pulsate)
.click(function() {
$(this).animate({ opacity: 1 }, 1200, 'linear');
$(this).stop();
});
}
pulsate();
});
我不确定这与哪个 .js 文件冲突...是否有我可以使用的 noConflict 代码使这两个项目都工作?
【问题讨论】:
标签: javascript jquery html css web