2012-04-16 10 views
0

私が使用したコードがある... jQueryのイメージギャラリーを使用しようとしているが、何とかナビゲーションアイコンが現れ、さらには「ロード」アイコンをクリックして上に表示いけないcss Image gallery ..の何かが間違っていますか?

を使用しています:

.ad-gallery .ad-image-wrapper .ad-prev .ad-prev-image, .ad-gallery .ad-image-wrapper .ad-next .ad-next-image { 
    background: url(ad_prev.png); 
    width: 30px; 
    height: 30px; 
    display: none; 
    position: absolute; 
    top: 47%; 
    left: 0; 
    z-index: 101; 
    } 
    .ad-gallery .ad-image-wrapper .ad-next .ad-next-image { 
    background: url(ad_next.png); 
    width: 30px; 
    height: 30px; 
    right: 0; 
    left: auto; 
    } 
    .ad-gallery .ad-image-wrapper .ad-image .ad-image-description { 
    position: absolute; 
    bottom: 0px; 
    left: 0px; 
    padding: 7px; 
    text-align: left; 
    width: 100%; 
    z-index: 2; 
    background: url(opa75.png) #ededed; 
    color: #000; 
    } 

ページへのリンク:http://www.thekashmirscenario.com/gallery/index.php

答えて

3

画像へのパスが間違っています。ブラウザは、404メッセージを表示しています。パスを確認し、パスが存在することを確認します。関係のないメモでは、使用しているjQueryのバージョンをアップグレードすることを検討することもできます。

GET http://www.thekashmirscenario.com/gallery/loader.gif 404 (Not Found) 
GET http://www.thekashmirscenario.com/gallery/ad_next.png 404 (Not Found) 
GET http://www.thekashmirscenario.com/gallery/ad_prev.png 404 (Not Found) 
GET http://www.thekashmirscenario.com/gallery/ad_scroll_back.png 404 (Not Found) 
GET http://www.thekashmirscenario.com/gallery/ad_scroll_forward.png 404 (Not Found) 
+0

アップグレードされたjqueryへのリンクがありますか? wudは役に立ちます:) –

+0

http://jquery.com/からサーバー上のホストに最新のコピーを取得するか、jquery(http://code.jquery.com/jquery)のようなホストされたバージョンにリンクすることができます-1.7.2.min.jsまたはhttp://code.jquery.com/jquery-1.7.2.js)またはGoogle(https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/) jquery.min.jsまたはhttps://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.js) – j08691

関連する問題