我在cashmerepoloclub.com上有一个网站,但它运作不正常。横幅显示第一张幻灯片然后停止响应,有时它不显示自己。我试图替换它的原始文件,启用它,禁用其他未使用的扩展但没有任何作用。有谁可以帮助我吗?
提前感谢你
Akshat Gupta
答案 0 :(得分:0)
Banner没有加载其他图片,因为有jquery.easing
在google jquery-easingjquery-easing-def-is-not-a-function上搜索此错误。您可以看到此post
答案 1 :(得分:0)
缺少jQuery Fancy框的源文件。在页眉中包含jquery.fancybox-1.3.4.js。您可以从here
下载jQuery Fancy box然后检查问题是否已解决。如果横幅仍有问题,请替换以下代码
jQuery(function(){
jQuery('#camera_wrap_4').camera({
height: '36%',
loader: 'bar',
pagination:false,
thumbnails:false,
fx : 'random',
hover:true,
imagePath: '../images/'
});
});
与
var jq = jQuery.noConflict();
jq(function(){
jq('#camera_wrap_4').camera({
height: '36%',
loader: 'bar',
pagination:false,
thumbnails:false,
fx : 'random',
hover:true,
imagePath: '../images/'
});
});
希望它对你有所帮助。