嗨,你好我在jquery中几乎是新手,最近有关于跨浏览器的问题。当我在编辑后尝试使用mozilla firefox时,jquery自定义内容滚动条会冻结我的div,使其无法解压缩。有什么不对?它之前的工作就像mozilla firefox上的魅力之前我把流量滑块。即使我删除了flowlider功能,它仍然冻结。在chrome中一切正常。
我知道这可能是因为我的错误。我有什么可以解决的吗?或者可能有人帮我修改代码?
以下是我的javascript代码:
$(function() {
jQuery(document).ready(function($) {
$(".slider-horizontal").FlowSlider({
infinite: true,
animation: "Accelerating",
controllers: ["HoverCenter"],
controllerOptions: [{
center: 100,
mouseStart: 300,
mouseEnd: 100
}]
});
});
$(window).load(function() {
$("#newboxes5, .gallery_container").mCustomScrollbar({
advanced: {
updateOnContentResize: true
}
});
$(".gallery_container").mCustomScrollbar({
horizontalScroll:true
});
$("#newboxes5").mCustomScrollbar("update");
});
});
function slideSwitch() {
var $active = $('#slideshow IMG.active');
if ( $active.length == 0 ) $active = $('#slideshow IMG:last');
var $next = $active.next().length ? $active.next()
: $('#slideshow IMG:first');
$active.addClass('last-active');
$next.css({opacity: 0.0})
.addClass('active')
.animate({opacity: 1.0}, 1500, function() {
$active.removeClass('active last-active');
});
}
$(function() {
setInterval( "slideSwitch()", 3000 );
});
function showonlyone(thechosenone) {
$('.newboxes, .gallery_box').each(function(index) {
if ($(this).attr("id") == thechosenone) {
$(this).show(200);
}
else {
$(this).hide(200);
}
});
}