为什么播放停止暂停按钮和progressBar根本没有显示?

时间:2014-11-27 13:57:21

标签: javascript jquery html css

这是jsfiddler,问题在于我要添加的大图像按钮播放停止暂停和大图像上的进度条:JSFiddler

当我在做检查元素时,我没有看到任何红色错误。 我拿了这个jquery的代码:Automatic slideshow with a timer, play-, pause-, previous- and next-

在此之前我使用了coolcarousels这个jquery:带有缩略图轮播的酷响应图像滑块

Cool responsive image slider

这是我现在的代码:

在html文件中:

<!DOCTYPE html>
<!--
-->
<html>
    <head>
        <link rel="stylesheet" type="text/css" href="carousel.css">
        <link rel="stylesheet" type="text/css" href="glow-effect.css">
        <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script>
        <script src="//cdnjs.cloudflare.com/ajax/libs/jquery.caroufredsel/6.1.0/jquery.carouFredSel.packed.js" type="text/javascript"></script>
        <script src="http://malsup.github.io/jquery.cycle2.js"></script>
        <script src="http://malsup.github.io/jquery.cycle2.carousel.js"></script>
        <script src="java_script.js"></script>
        <title>TODO supply a title</title>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <style>.container {
    background: rgb(170, 187, 97); /* Fallback */
    background: rgba(170, 187, 97, 0.5);
}</style>
    </head>
    <body>
        <div>TODO write content</div>

        <div id="wrapper">
    <div id="carousel-wrapper">
        <img id="shadow" src="img/gui/carousel_shadow.png" />
                <div id="inner">
        <div id="carousel">
            <span id="pixar"><img src="http://newsxpressmedia.com/files/radar-simulation-files/radar007339.Gif" /></span>
            <span id="bugs"><img src="http://newsxpressmedia.com/files/radar-simulation-files/radar005712.Gif" /></span>
            <span id="cars"><img src="http://newsxpressmedia.com/files/radar-simulation-files/radar007337.Gif" /></span>
            <span id="incred"><img src="http://newsxpressmedia.com/files/radar-simulation-files/radar000009.Gif" /></span>
            <span id="monsters"><img src="http://newsxpressmedia.com/files/radar-simulation-files/radar000007.Gif" /></span>
            <span id="nemo"><img src="http://newsxpressmedia.com/files/radar-simulation-files/radar005720.Gif" /></span>
                        <span id="radar"><img src="http://newsxpressmedia.com/files/radar-simulation-files/radar007338.Gif" /></span>
            <span id="rat"><img src="http://newsxpressmedia.com/files/radar-simulation-files/radar003137.Gif" /></span>
            <span id="toystory"><img src="http://newsxpressmedia.com/files/radar-simulation-files/radar000005.Gif" /></span>
            <span id="up"><img src="http://newsxpressmedia.com/files/radar-simulation-files/radar003138.Gif" /></span>
            <span id="walle"><img src="http://newsxpressmedia.com/files/radar-simulation-files/radar000006.Gif" /></span>
                        <div id="navi">
            <div id="timer"></div>
            <a id="prev" href="#"></a>
            <a id="play" href="#"></a>
            <a id="next" href="#"></a>
        </div>
    </div>
        </div>
    </div>
    <div id="thumbs-wrapper">
        <div id="thumbs">
            <a href="#pixar" class="selected"><img src="img/small/pixar.jpg" /></a>
            <a href="#bugs"><img src="img/small/bugs.jpg" /></a>
            <a href="#cars"><img src="img/small/cars.jpg" /></a>
            <a href="#incred"><img src="img/small/incred.jpg" /></a>
            <a href="#monsters"><img src="img/small/monsters.jpg" /></a>
            <a href="#nemo"><img src="img/small/nemo.jpg" /></a>
                        <a href="#radar"><img src="img/small/radar002665resized.jpg" /></a>
            <a href="#rat"><img src="img/small/rat.jpg" /></a>
            <a href="#toystory"><img src="img/small/toystory.jpg"  /></a>
            <a href="#up"><img src="img/small/up.jpg" /></a>
            <a href="#walle"><img src="img/small/walle.jpg" /></a>
        </div>
        <a id="prev" href="#"></a>
        <a id="next" href="#"></a>
    </div>
</div>
        <div class="carousel">
        <div class="container">Lorem ipsum dolor</div>
        <div class="container">Lorem ipsum_for_testing dolor</div>
        </div>

    </body>
</html>

我在html文件中添加了这部分:

<div id="inner">

<div id="timer"></div>
<a id="prev" href="#"></a>
<a id="play" href="#"></a>
<a id="next" href="#"></a>

然后是javascript文件:

$(function() {

    $('#carousel span').append('<img src="img/gui/carousel_glare.png" class="glare" />');
    $('#thumbs a').append('<img src="img/gui/carousel_glare_small.png" class="glare" />');
    $('#carousel').carouFredSel({
                prev: '#prev',
        next: '#next',
        auto: {
            button: '#play',
            progress: '#timer',
            pauseOnEvent: 'resume'
        },
        responsive: true,
        circular: false,
        auto: true,
                infinite: true,
        items: {
            visible: 1,
            width: 200,
            height: '56%'
        },
        scroll: {
            fx: 'directscroll',
                        pauseOnHover: true,
                        duration: 500
        }
    });

    $('#thumbs').carouFredSel({
        responsive: true,
        circular: false,
        infinite: false,
        auto: false,
        prev: '#prev',
        next: '#next',
        items: {
            visible: {
                min: 2,
                max: 6
            },
            width: 150,
            height: '66%'
        }
    });

    $('#thumbs a').click(function() {
        $('#carousel').trigger('slideTo', '#' + this.href.split('#').pop() );
        $('#thumbs a').removeClass('selected');
        $(this).addClass('selected');
        return false;
    });
        $('#wrapper').hover(function() {
        $('#navi').stop().animate({
            bottom: 0
        });
    }, function() {
        $('#navi').stop().animate({
            bottom: -60
        });
    });

});

和css文件:

html, body {
    height: 100%;
    padding: 0;
    margin: 0;
}
body {
    background: url(img/gui/bg_glare.png) top center no-repeat #bcc;
}
html > body {
    min-height: 600px;
}
body * {
    font-family: Arial, Geneva, SunSans-Regular, sans-serif;
    font-size: 14px;
    color: #333;
    line-height: 22px;
}

#wrapper {
    position: absolute;
    width: 50%;
    left: 25%;
    top: 50px;
}
#carousel-wrapper {
    padding-bottom: 10px;
    position: relative;
}
#carousel, #thumbs {
    overflow: hidden;
}
#carousel-wrapper .caroufredsel_wrapper {
    border-radius: 10px;
    box-shadow: 0 0 5px #899;
}

#carousel span, #carousel img,
#thumbs a, #thumbs img  {
    display: block;
    float: left;
}
#carousel span, #carousel a,
#thumbs span, #thumbs a {
    position: relative;
}
#carousel img,
#thumbs img {
    border: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
#carousel img.glare,
#thumbs img.glare {
    width: 102%;
    height: auto;
}

#carousel span {
    width: 554px;
    height: 313px;
}

#thumbs-wrapper {
    padding: 20px 40px;
    position: relative;
}
#thumbs a {
    border: 2px solid #899;
    width: 150px;
    height: 100px;
    margin: 0 10px;
    overflow: hidden;
    border-radius: 10px;

    -webkit-transition: border-color .5s;
    -moz-transition: border-color .5s;
    -ms-transition: border-color .5s;
    transition: border-color .5s;
}
#thumbs a:hover, #thumbs a.selected {
    border-color: #566;
}

#wrapper img#shadow {
    width: 100%;
    position: absolute;
    bottom: 0;
}

#prev, #next {
    background: transparent url('img/gui/carousel_nav.png') no-repeat 0 0;
    display: block;
    width: 19px;
    height: 20px;
    margin-top: -10px;
    position: absolute;
    top: 50%;
}
#prev {
    background-position: 0 0;
    left: 10px;
}
#next {
    background-position: -19px 0;
    right: 10px;
}           
#prev:hover { 
    background-position: 0 -20px;               
}
#next:hover {
    background-position: -19px -20px;               
}
#prev.disabled, #next.disabled {
    display: none !important;
}

在css文件中,我没有更改我添加的javascript文件中的代码:

prev: '#prev',
        next: '#next',
        auto: {
            button: '#play',
            progress: '#timer',
            pauseOnEvent: 'resume'
        },

$('#wrapper').hover(function() {
        $('#navi').stop().animate({
            bottom: 0
        });
    }, function() {
        $('#navi').stop().animate({
            bottom: -60
        });
    });

旋转木马的第一个jquery在第二个链接上工作正常。 但是新的播放停止暂停按钮我根本看不到它们。

我的意思是这样的东西,不知何故也改变按钮的颜色播放停止暂停以适应大图像的颜色可能是更轻或透明的颜色。

Screenshot

暂停停止游戏应该处理大图像而不是小图像。

0 个答案:

没有答案