2012-06-24 72 views
2

我使用這個jsFiddle在我正在設計的網頁上實現一個groupon(groupon.com)像div一樣。如何通過按下按鈕而不是通過推動div本身來移動我的移動div?

我的問題是,不是在div上點擊右鍵來移動它,你將如何設置它,以便每個div都有一個按鈕,並且您必須單擊按鈕(位於div上)才能繼續下一步div,而不是僅僅點擊div本身w/no按鈕?

所有幫助都非常感謝!

+0

FYI .... http://jsfiddle.net/ykbgT/2439/ – Dasarp

+0

這是一個錯誤:( 你不需要使用_this的.box每個,因爲你需要使用#box – Bruno

+0

@JulieS:如果提供的答案有幫助,請接受其中一個答案,或讓我們知道問題是否仍然存在。 – Nope

回答

0

http://jsfiddle.net/ykbgT/2446/

相同的代碼,只是調整,這樣當鏈路(或按鈕)被按下它同樣不是使用$,但(這)(曾經是在div)你現在要做的$(這個).parent()(因爲$(this)是鏈接,父是div)

編輯:更新以緩存父。

4

我已經用你現有的代碼更新了你的小提琴,只要看看this demo

$('.box button').click(function() { 
    $('.box').each(function() { 
     if ($(this).offset().left < 0) { 
      $(this).css("left", "150%"); 
     } 
    }); 

    var t=$(this); 
    t.parent().animate({ left: '-50%' }, 500); 
    if (t.parent().next().size() > 0) { 
     t.parent().next().animate({ left: '50%' }, 500); 
    } 
    else{ 
     t.parent().prevAll().last().animate({ left: '50%' }, 500); 
    } 
}); 
1

HTML示例

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

腳本示例

$('.box .button').click(function() { 
    $('.box').each(function() { 
     var $currentBox = $(this); 

     if ($currentBox.offset().left < 0) { 
      $currentBox.css("left", "150%"); 
     } 
    }); 

    var $currentDiv = $(this).parent(); 

    $currentDiv.animate({ 
     left: '-50%' 
    }, 500); 

    if ($currentDiv.next().size() > 0) { 
     $currentDiv.next().animate({ 
      left: '50%' 
     }, 500); 
    } else { 
     $currentDiv.prevAll().last().animate({ 
      left: '50%' 
     }, 500); 
    } 
}); 

參見DEMO