0

有关更多信息,请参阅此JSFiddle

我已经成功创建了 DIV 的动态幻灯片。

这是html:

<div id="container">

    <div id="box1" class="box">Div #1</div>
    <div id="box2" class="box">Div #2</div>
    <div id="box3" class="box">Div #3</div>
    <div id="box4" class="box">Div #4</div>
    <div id="box5" class="box">Div #5</div>

</div>

js代码是:

$('.box').click(function() {

    $(this).animate({
        left: '-50%'
    }, 500, function() {
        $(this).css('left', '150%');
        $(this).appendTo('#container');
    });

    $(this).next().animate({
        left: '50%'
    }, 500);
});

和 CSS:

body {
    padding: 0px;    
}

#container {
    position: absolute;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;  
}

.box {
    position: absolute;
    width: 50%;
    height: 300px;
    line-height: 300px;
    font-size: 50px;
    text-align: center;
    border: 2px solid black;
    left: 150%;
    top: 100px;
    margin-left: -25%;
}

#box1 {
    background-color: green;
    left: 50%;
}

#box2 {
    background-color: yellow;
}

#box3 {
    background-color: red;
}

#box4 {
    background-color: orange;
}

#box5 {
    background-color: blue;
}

我想要发生的是在滑动框周围有一个边框(可以是带有纯 css 的 div),这样我就看不到两侧的过渡动画

4

1 回答 1

1

你可以在它周围扔一个面具,然后定位面具,例如:

http://jsfiddle.net/gUAXD/1/

由于溢出:隐藏,这应该非常像 iframe。

body {
    padding: 0px;    
}

#container {
    position: absolute;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;  
}

.box {
    position: absolute;
    width: 100%;
    height: 300px;
    line-height: 300px;
    font-size: 50px;
    text-align: center;
    border: 2px solid black;
    left: 100%;
    top: -1px;
    margin-left:-1px;
}

#box1 {
    background-color: green;
    left: 0%;
}

#box2 {
    background-color: yellow;
}

#box3 {
    background-color: red;
}
#mask{
    border:3px solid black;
    position: absolute;
    width: 50%;
    height: 300px;
    overflow:hidden;
}
#box4 {
    background-color: orange;
}

#box5 {
    background-color: blue;
}

和html:

<div id="container">
    <div id="mask">
       <div id="box1" class="box">Div #1</div>
       <div id="box2" class="box">Div #2</div>
       <div id="box3" class="box">Div #3</div>
       <div id="box4" class="box">Div #4</div>
       <div id="box5" class="box">Div #5</div>
    </div>
</div>
于 2013-09-04T03:22:09.623 回答