jQuery脉动代码与滚动图像jquery代码冲突

时间:2012-01-27 03:14:00

标签: javascript jquery html css web

这是网站: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代码,以便两个项目都有效?

1 个答案:

答案 0 :(得分:0)

我建议从设计的角度来看,根本不要有脉动。但是当它确实破坏时,如果你在那里取出那些代码,滑块是否会再次开始工作?

此外,更改脉动图像的类别,因为它也会激活电话号码表格字段。除非那是你想要发生的事情。