滑动的div关闭使用jQuery +加入导航箭头屏幕(Slide divs off screen u

2019-10-17 08:01发布

任何人都可以加入导航箭头的代码片段在这里找到帮助

滑动格屏幕外使用jQuery和给出的第一个答案.... http://jsfiddle.net/jtbowden/ykbgT/2/

我希望能够增加的方向箭头或上/下一个链接

下面的代码

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>

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;
}

JavaScript的:

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

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

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

它出色的作品,但导航是一个方向,然后通过单击框激活

提前致谢

AOR

Answer 1:

应该很容易做到:)

做一个“导航控制”包装元素:

var $controller = $('<div class="control-wrapper" />);

添加到作为左和右移动的按钮2的主要内容:

var $left = $('<span class="move left" />').appendTo($controller),
    $right = = $('<span class="move right"/>').appendTo($controller);

添加事件处理程序为每个动画中的每个运动元素:

$left.click(function(event) {
 ////MOVE THE NAV LEFT
};

$right.click(function(event) {
 ////MOVE THE NAV RIGHT
};

替换注释以函数调用来移动导航(你已经将它移到左边的逻辑;))

注意:请确保您添加“ 光标:指针 ”,使它们看起来是点击到用户的按钮元素的CSS类。



Answer 2:

如果有人有兴趣在这里是一个类似的问题完美的作品更详细的解答! jQuery的动画与导航箭头在屏幕上顺序地开/关的div



文章来源: Slide divs off screen using jQuery + added navigation arrows