2013-05-14 87 views
0

我工作的一個客戶的網站Website網站啓動滑塊不工作

第一個滑塊是工作,但不知道爲什麼它不能正常工作。 滑塊與你的生活字眼。

任何機構可以請查詢網站,讓我知道在哪裏的問題 下面是HTML代碼

<div id="splash-show"> 
<div class="show-slide"> 
    <img src="http://vaionyva.com/wp-content/themes/perfekto/images/splash/yourlife.png"> 
<!--/show-slide--></div> 
<div class="show-slide"> 
    <img src="http://vaionyva.com/wp-content/themes/perfekto/images/splash/yourlove.png"> 
<!--/show-slide--></div> 
<div class="show-slide"> 
    <img src="http://vaionyva.com/wp-content/themes/perfekto/images/splash/thismoment.png"> 
<!--/show-slide--></div> 
<div class="show-slide"> 
    <img src="http://vaionyva.com/wp-content/themes/perfekto/images/splash/logo.png"> 
<!--/show-slide--></div> 

+0

究竟是行不通的,什麼是它應該是什麼樣子的? 「滑塊與你的生活字眼。」不是一句話,並不代表什麼意思。 – dezman

+0

請檢查上面的代碼..我剛剛添加。其基本上是一個不工作的滑塊。在此滑塊之後整個網站加載。不知道是誰開發的。我只是修復一些像這樣的錯誤 – sam53

+0

沒有什麼看起來破了我? – ArleyM

回答

0

你似乎使用超大型WordPress的。

當我加載您的網站時,我看到的第一張圖片是「您的生活」幻燈片,但在網頁/整個幻燈片加載後消失,因此我認爲問題在於所述圖片不成爲幻燈片本身。

如果我理解正確你的問題,你可以很容易地在這裏添加您的圖像在JavaScript:

<script type="text/javascript"> 
      jQuery(document).ready(function($) { 
       $.supersized({ 
            slideshow    : 1, 
        autoplay  : 1, 
                start_slide    : 1, 
                random   : 1, 
        slide_interval   : 5000, 
        transition    : 1, 
        transition_speed : 1000, 
        new_window  : 1, 
        pause_hover    : 1, 
             stop_loop    : 1, 
        keyboard_nav   : 1, 
        performance  : 1, 

                image_protect  : 1, 
        image_path  : 'http://vaionyva.com/wp-content/plugins/wp-supersized/img/', 
        min_width  : 1200, 
        min_height  : 0, 
        vertical_center   : 1, 
        horizontal_center  : 1, 
             fit_always   : 0, 
        fit_portrait   : 0, 
        fit_landscape  : 0, 
            thumbnail_navigation : 0, 
             thumb_links    : 1, 
        slide_counter   : 0, 
        slide_captions   : 0, 
                slides     : [ 
{image : 'http://vaionyva.com/wp-content/themes/perfekto/images/splash/yourlife.png', title : '', thumb : '', url : ''}, 
{image : 'http://vaionyva.com/wp-content/themes/perfekto/images/splash/yourlove.png', title : '', thumb : '', url : ''}, 
{image : 'http://vaionyva.com/wp-content/themes/perfekto/images/splash/thismoment.png', title : '', thumb : '', url : ''}, 
{image : 'http://vaionyva.com/wp-content/themes/perfekto/images/splash/logo.png', title : '', thumb : '', url : ''}, 
{image : 'http://vaionyva.com/wp-content/sliders/IMG_0125.jpg', title : '', thumb : '', url : ''}, 
{image : 'http://vaionyva.com/wp-content/sliders/IMG_9668.jpg', title : '', thumb : '', url : ''}, 
{image : 'http://vaionyva.com/wp-content/sliders/IMG_9669.jpg', title : '', thumb : '', url : ''}, 
{image : 'http://vaionyva.com/wp-content/sliders/IMG_9950.jpg', title : '', thumb : '', url : ''}, 
{image : 'http://vaionyva.com/wp-content/sliders/IMG_9958.jpg', title : '', thumb : '', url : ''}, 
{image : 'http://vaionyva.com/wp-content/sliders/IMG_0122.JPG', title : '', thumb : '', url : ''}, 
{image : 'http://vaionyva.com/wp-content/sliders/IMG_9552.JPG', title : '', thumb : '', url : ''}, 
{image : 'http://vaionyva.com/wp-content/sliders/IMG_9610.JPG', title : '', thumb : '', url : ''}, 
{image : 'http://vaionyva.com/wp-content/sliders/IMG_9794.JPG', title : '', thumb : '', url : ''}, 
{image : 'http://vaionyva.com/wp-content/sliders/IMG_9937.JPG', title : '', thumb : '', url : ''}, 
{image : 'http://vaionyva.com/wp-content/sliders/IMG_9995.JPG', title : '', thumb : '', url : ''}], 
             slide_links    : 'blank', 
             progress_bar  : 0,       
        mouse_scrub  : 1            
       }); 
      }); 
     </script> 
+0

請通過檢查複選標記來投票我的答案,如果這有助於你:) – Kitsu