2013-05-14 65 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