2013-03-15 88 views
0

我有一個website,其中jQuery custom content scroller在Chrome中不起作用。jQuery自定義內容滾動器在Chrome中不起作用

正如您所看到的,在名爲「Lista Foto」和「Foto Album」的照片列表中,我在照片下方有一個水平滾動條。

但它只適用於Firefox而不適用於Chrome。

有人能幫助我嗎?

馬爾科

[編輯]這就是我所說的庫中的腳本:

(function($){ 
jQuery(document).ready(function($) { 
    $('#loader').fadeIn(); 
    $('#preloader').hide(); 
    $(".fotothumb,.fotothumb2").mCustomScrollbar({horizontalScroll: true}); 
}); 

})(jQuery); 
+3

通常希望您在此處發佈一些代碼以進行調試。至少發佈你的插件初始化函數。 – isherwood 2013-03-15 17:25:04

回答

0

的問題是該文件的.htaccess。該文件現在是

RewriteEngine On 
RewriteBase/


RewriteRule ^ferrarichallenge/?$ ferrari.php [NC,L] 
RewriteRule ^ferrarichallenge/facebook/?$ ferrarifacebook.php 
RewriteRule ^ferrarichallenge/youtube/?$ ferrariyoutube.php [NC,L] 


#<FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$"> 
#Header set Expires "Wed, 15 Apr 2020 20:00:00 GMT" 
#Header set Cache-Control "public" 
#</FilesMatch> 

#SetOutputFilter DEFLATE 
#AddOutputFilter DEFLATE text/plain 
#AddOutputFilter DEFLATE text/xml 
#AddOutputFilter DEFLATE application/xhtml+xml 
#AddOutputFilter DEFLATE text/css 
#AddOutputFilter DEFLATE application/xml 
#AddOutputFilter DEFLATE image/svg+xml 
#AddOutputFilter DEFLATE application/rss+xml 
#AddOutputFilter DEFLATE application/atom_xml 
#AddOutputFilter DEFLATE application/x-javascript 
#AddOutputFilter DEFLATE application/x-httpd-php 
#AddOutputFilter DEFLATE application/x-httpd-fastphp 
#AddOutputFilter DEFLATE application/x-httpd-eruby 
#AddOutputFilter DEFLATE text/html 
#SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary 
#SetEnvIfNoCase Request_URI \.(?:exe|t?gz|zip|bz2|sit|rar)$ no-gzip dont-vary 
#SetEnvIfNoCase Request_URI \.pdf$ no-gzip dont-vary 
#SetEnvIfNoCase Request_URI \.avi$ no-gzip dont-vary 
#SetEnvIfNoCase Request_URI \.mov$ no-gzip dont-vary 
#SetEnvIfNoCase Request_URI \.mp3$ no-gzip dont-vary 
#SetEnvIfNoCase Request_URI \.mp4$ no-gzip dont-vary 
#SetEnvIfNoCase Request_URI \.rm$ no-gzip dont-vary 
#BrowserMatch ^Mozilla/4 gzip-only-text/html 
#BrowserMatch ^Mozilla/4\.0[678] no-gzip 
#BrowserMatch \bMSIE !no-gzip !gzip-only-text/html  

如果我取消註釋所有前一行水平滾動條隱藏。

我沒有時間深入研究問題,但這是解決我的問題。