背景不会向左重复

时间:2015-11-27 00:35:13

标签: javascript jquery html css

我试图做一个滑块菜单,我有一个带有磁带背景的div,当它通过背景重复动画到左边时,一切都正常工作,但是当它向右动画并且它向左移动时背景的边框会消失,因为背景重复不会向左重复,只是向右重复..有办法让背景重复到左边吗?

“slider”div中的列表不会以“slider”div

的相同速度移动

以下是HTML代码

<!DOCTYPE html>
<html>
<head>
    <title>Prueba</title>
    <link type = "text/css" rel = "stylesheet" href = "PruebaIndex.css">
    <script type = "text/javascript" src = "jquery-2.1.4.js"></script>
    <script>
        $(document).ready(function(){
            var mode = 0; // 0 Left - 1 Right
            autoSlider();
            function autoSlider(){
                mode = 0;
                $("#slider").animate({left: "-=60px", width: "+=60px"}, 'slow', 'linear', autoSlider);
            }
            function slideLeft(){
                mode = 1;
                $("#slider").animate({left: "+=60px", width: "-=60px"}, 'slow', 'linear', slideLeft);
            }
            $("#slider").mouseover(function(){
                $("#slider").stop();
            });
            $("#slider").mouseout(function(){
                if(mode === 0)
                    autoSlider();
                else
                    slideLeft();
            });
            $("#Left").mouseover(function(){
                $("#slider").stop();
                autoSlider();
            });
            $("#Right").mouseover(function(){
                $("#slider").stop();
                slideLeft();
            });
        });
    </script>
</head>

<body>
    <div id = "wrapper">
        <div id = "slider">
            <ul>
                <li>1</li>
                <li>2</li>
                <li>3</li>
            </ul>
        </div>
        <div id = "Left">
            Left
        </div>
        <div id = "Right">
            Right
        </div>
    </div>
</body>
</html>

和CSS代码

*{
padding: 0;
margin: 0;
}

#slider {
padding: 0;
left: 0px;
background-color: black;
background-image: url("http://s11.postimg.org/msh93rl8z/Tira_Fotografica.png");
background-repeat: repeat-x;
width: 800px;
height: 304px;
position: relative;
overflow: hidden;
}

#wrapper {
width: 800px;
height: 1000px;
margin: 0 auto;
text-align: center;
overflow: hidden;
}

#Left {
width: 100px;
height: 100px;
position: absolute;
color: white;
background-color: black;
margin-top: -200px;
margin-left: -100px;
}

#Right {
width: 100px;
height: 100px;
position: absolute;
color: white;
background-color: black;
margin-top: -200px;
margin-left: 800px;
}

#slider ul {
list-style: none;
}

#slider ul li {
display: inline-block;
width: 200px;
height: 200px;
position: relative;
background-color: white;
margin: 50px 10px 0px 0px;
}

我试图将代码放在JSFiddle上,但它没有运行.. 抱歉我的英文不好

1 个答案:

答案 0 :(得分:0)

它有效。见这里:https://jsfiddle.net/cLv4hLfy/

看看#slider元素。

这个值很烦人; - )

<div style="left: -5863.5px; width: 6663.8px; overflow: hidden;" id="slider">

左边正在减少,宽度越来越大。 当滑块向相反方向移动时,左边会变大,宽度会收敛到0px

[编辑]:所以背景没有动画。 div是动画的。怎么样修复div并在div中制作动画。你可以在重复时用背景位置做一些事情。